fix wrapped rune

This commit is contained in:
2025-03-26 19:11:53 -05:00
parent 212a9111a0
commit 4a2317e6aa
+2 -2
View File
@@ -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 {
MobLoot rune = new MobLoot(playerCharacter, runeBase, true);
if (rune != null)
playerCharacter.getCharItemManager().addItemToInventory(rune);
playerCharacter.getCharItemManager().addItemToInventory(rune.promoteToItem(playerCharacter));
}
}
break;