Unnecessary cast removed.

This commit is contained in:
2023-08-12 07:46:24 -04:00
parent a7495bf942
commit 962ad4277a
+1 -1
View File
@@ -455,7 +455,7 @@ public enum LootManager {
//add winnings to player inventory
Item playerWinnings = winnings.promoteToItem((PlayerCharacter) playerCharacter);
Item playerWinnings = winnings.promoteToItem(playerCharacter);
itemMan.addItemToInventory(playerWinnings);
itemMan.updateInventory();
}