Fixed payload calculations not using squares

This commit is contained in:
Anuken
2020-09-06 22:19:30 -04:00
parent 010a1594fa
commit 93d1904978
3 changed files with 7 additions and 7 deletions

View File

@@ -1924,7 +1924,7 @@ public class Blocks implements ContentList{
instructionsPerTick = 5;
range = 8 * 20;
range = 8 * 22;
size = 2;
}};
@@ -1937,7 +1937,7 @@ public class Blocks implements ContentList{
instructionsPerTick = 25;
range = 8 * 40;
range = 8 * 42;
size = 3;
}};

View File

@@ -1035,7 +1035,7 @@ public class UnitTypes implements ContentList{
rotateShooting = false;
hitsize = 15f;
engineSize = 3f;
payloadCapacity = 4 * 8;
payloadCapacity = 4 * (8 * 8);
weapons.add(
new Weapon("heal-weapon-mount"){{