Advertisement
Kapa3a

Fix echipament cu inventarul plin

Nov 23rd, 2023
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | Source Code | 0 0
  1. Intrati in game, dechideti char_item.cpp si cautati:
  2. if (false == CanUnequipNow(item2) || false == CanEquipNow(item1))
  3.  
  4. O inlocuiti cu:
  5. //if (false == CanUnequipNow(item2) || false == CanEquipNow(item1))
  6. if (false == CanEquipNow(item1))
  7.     return false;
  8. if (item2->IsDragonSoul() && false == CanUnequipNow(item2))
  9.     return false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement