Skip to content

Commit

Permalink
Merge pull request liyunfan1223#742 from avirar/inCombatErrorTypo
Browse files Browse the repository at this point in the history
When bots try to equip armour while in combat they say "I am not in combat"
  • Loading branch information
noisiver authored Nov 27, 2024
2 parents c0b1859 + 37e5e39 commit 3e449ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strategy/actions/InventoryChangeFailureAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ bool InventoryChangeFailureAction::Execute(Event event)
messages[EQUIP_ERR_BAG_FULL4] = messages[EQUIP_ERR_BAG_FULL];
messages[EQUIP_ERR_ITEM_SOLD_OUT] = messages[EQUIP_ERR_ITEM_IS_CURRENTLY_SOLD_OUT];
messages[EQUIP_ERR_OBJECT_IS_BUSY] = "This object is busy";
messages[EQUIP_ERR_NOT_IN_COMBAT] = "I am not in combat";
messages[EQUIP_ERR_NOT_IN_COMBAT] = "I am in combat";
messages[EQUIP_ERR_NOT_WHILE_DISARMED] = "Cannot do while disarmed";
messages[EQUIP_ERR_BAG_FULL6] = messages[EQUIP_ERR_BAG_FULL];
messages[EQUIP_ERR_CANT_EQUIP_RANK] = "Not enough rank";
Expand Down

0 comments on commit 3e449ff

Please sign in to comment.