mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-07 04:45:23 +02:00
Add WORN_BACK location
This commit is contained in:
parent
fa5a771f88
commit
448adc6cba
7 changed files with 66 additions and 40 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue