Revamp comment

This commit is contained in:
Patrick 'Quezler' Mounier
2020-01-03 20:19:44 +01:00
parent 0ae627c56b
commit 2666b564c2

View File

@@ -53,7 +53,7 @@ public class CraterConveyor extends BaseConveyor{
public void draw(Tile tile){
super.draw(tile);
// draws the markings over either end of the track
// don't draw if its just one lone tile
if(isStart(tile) && isEnd(tile)) return;
if(isStart(tile)) Draw.rect(start, tile.drawx(), tile.drawy(), tile.rotation() * 90);
if(isEnd(tile)) Draw.rect(end, tile.drawx(), tile.drawy(), tile.rotation() * 90);