Browse Source

fix wrapped rune

lakebane-recovery
FatBoy-DOTC 5 days ago
parent
commit
4a2317e6aa
  1. 4
      src/engine/gameManager/LootManager.java

4
src/engine/gameManager/LootManager.java

@ -645,7 +645,7 @@ public enum LootManager { @@ -645,7 +645,7 @@ public enum LootManager {
MobLoot rune = new MobLoot(playerCharacter, runeBase, true);
if (rune != null)
playerCharacter.getCharItemManager().addItemToInventory(rune);
playerCharacter.getCharItemManager().addItemToInventory(rune.promoteToItem(playerCharacter));
}
} else {
//5-30
@ -661,7 +661,7 @@ public enum LootManager { @@ -661,7 +661,7 @@ public enum LootManager {
MobLoot rune = new MobLoot(playerCharacter, runeBase, true);
if (rune != null)
playerCharacter.getCharItemManager().addItemToInventory(rune);
playerCharacter.getCharItemManager().addItemToInventory(rune.promoteToItem(playerCharacter));
}
}
break;

Loading…
Cancel
Save