Skip to content

Commit

Permalink
Fix applying gems with .bot equip command
Browse files Browse the repository at this point in the history
  • Loading branch information
celguar committed Nov 30, 2024
1 parent 4f37b2f commit 791e37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playerbot/PlayerbotFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class PlayerbotFactory
static std::list<uint32> specialQuestIds;
void InitSkills();
void EnchantEquipment();
void EquipGear() { return InitEquipment(false, false); }
void EquipGear() { InitEquipment(false, false); InitGems(); }
void EquipGearBest() { return InitEquipment(false, false, false); }
void EquipGearPartialUpgrade() { return InitEquipment(false, false, true, true); }
void UpgradeGear(bool syncWithMaster) { return InitEquipment(!syncWithMaster, syncWithMaster); }
Expand Down

0 comments on commit 791e37c

Please sign in to comment.