Fixed genesis crystals not being given to player

This commit is contained in:
Melledy
2022-04-27 10:42:50 -07:00
parent 1586bab5d7
commit 8bf17a8bdc
4 changed files with 16 additions and 7 deletions

View File

@@ -249,6 +249,9 @@ public class Inventory implements Iterable<GameItem> {
case 202: // Mora
getPlayer().setMora(player.getMora() + count);
break;
case 203: // Genesis Crystals
getPlayer().setCrystals(player.getCrystals() + count);
break;
}
}