Add WORN_BACK location

This commit is contained in:
kinther 2025-08-31 10:56:33 -07:00
parent fa5a771f88
commit 448adc6cba
7 changed files with 66 additions and 40 deletions

View file

@ -160,6 +160,10 @@ static void auto_equip(struct char_data *ch, struct obj_data *obj, int location)
if (!CAN_WEAR(obj, ITEM_WEAR_NECK))
location = LOC_INVENTORY;
break;
case WEAR_BACK:
if (!CAN_WEAR(obj, ITEM_WEAR_BACK))
location = LOC_INVENTORY;
break;
case WEAR_BODY:
if (!CAN_WEAR(obj, ITEM_WEAR_BODY))
location = LOC_INVENTORY;