Actually fixed Serpulo base gen

This commit is contained in:
Anuken
2022-05-09 18:24:27 -04:00
parent 31c5ef2dc5
commit 76f1cfbc07
6 changed files with 17 additions and 15 deletions

View File

@@ -601,7 +601,8 @@ public class Generators{
//draw treads
if(sample instanceof Tankc){
image.draw(outline.get(get(type.treadRegion)), true);
Pixmap treads = outline.get(get(type.treadRegion));
image.draw(treads, image.width / 2 - treads.width / 2, image.height / 2 - treads.height / 2, true);
image.draw(get(type.previewRegion), true);
}