summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-rw-r--r--core/src/ch/asynk/rustanddust/game/Factory.java16
1 files changed, 15 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/Factory.java b/core/src/ch/asynk/rustanddust/game/Factory.java
index fbcd658..a2e898b 100644
--- a/core/src/ch/asynk/rustanddust/game/Factory.java
+++ b/core/src/ch/asynk/rustanddust/game/Factory.java
@@ -174,7 +174,7 @@ public class Factory implements Board.TileBuilder, Disposable
head = ((army == Army.US) ? "us-head" : "ge-head");
break;
case TANKS:
- head = chit + "-head";
+ head = chit + "-body";
break;
}
return getUnitRegion(head);
@@ -189,6 +189,20 @@ public class Factory implements Board.TileBuilder, Disposable
case TANKS:
break;
}
+ if (chit == "us-m4-sherman")
+ turret = chit + "-turret";
+ if (chit == "us-m10-wolverine")
+ turret = chit + "-turret";
+ if (chit == "us-m26-pershing")
+ turret = chit + "-turret";
+ if (chit == "ge-panzer-iv")
+ turret = chit + "-turret";
+ if (chit == "ge-wespe")
+ turret = chit + "-turret";
+ if (chit == "ge-tiger")
+ turret = chit + "-turret";
+ if (chit == "ge-kingtiger")
+ turret = chit + "-turret";
return getUnitRegion(turret);
}