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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 B

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

View File

@ -1,7 +1,7 @@
#Autogenerated file. Do not modify.
#Wed Mar 21 20:03:34 EDT 2018
#Wed Mar 21 20:49:05 EDT 2018
version=release
androidBuildCode=596
androidBuildCode=599
name=Mindustry
code=3.4
build=custom build

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);