mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-06 04:17:20 +02:00
Remove app_type bonuses in favor of ability mod bonus
This commit is contained in:
parent
3cabd51dc5
commit
19682f5b58
11 changed files with 18 additions and 252 deletions
|
|
@ -1713,8 +1713,8 @@ ACMD(do_wield)
|
|||
else {
|
||||
if (!CAN_WEAR(obj, ITEM_WEAR_WIELD))
|
||||
send_to_char(ch, "You can't wield that.\r\n");
|
||||
else if (GET_OBJ_WEIGHT(obj) > str_app[STRENGTH_APPLY_INDEX(ch)].wield_w)
|
||||
send_to_char(ch, "It's too heavy for you to use.\r\n");
|
||||
else if (GET_OBJ_WEIGHT(obj) > CAN_WIELD_W(ch))
|
||||
send_to_char(ch, "It's too heavy for you to use.\r\n");
|
||||
else if (GET_LEVEL(ch) < GET_OBJ_LEVEL(obj))
|
||||
send_to_char(ch, "You are not experienced enough to use that.\r\n");
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue