Added text

This commit is contained in:
Anuken
2018-03-21 20:50:00 -04:00
parent 238c589ad6
commit e5656896e7
11 changed files with 161 additions and 136 deletions

View File

@@ -81,7 +81,7 @@ public class Save16 extends SaveFileVersion {
int weapons = stream.readByte();
for (int i = 0; i < weapons; i++) {
control.upgrades().addWeapon((Weapon) Upgrade.getByID(stream.readByte()));
control.upgrades().addWeapon(Upgrade.getByID(stream.readByte()));
}
ui.hudfrag.updateWeapons();

View File

@@ -74,6 +74,10 @@ public class Blocks{
iron = new Ore("iron"){{
drops = new ItemStack(Item.iron, 1);
}},
copper = new Ore("copper"){{
drops = new ItemStack(Item.copper, 1);
}},
coal = new Ore("coal"){{
drops = new ItemStack(Item.coal, 1);