some fixes again

This commit is contained in:
rozenkranzz 2025-02-10 09:31:20 +04:00
parent 6c478bb1a6
commit b9b074c809

View File

@ -126,11 +126,6 @@ public class DrawingLiner {
new int[]{hullPoints[0].y, hullPoints[1].y,
hullPoints[2].y, hullPoints[3].y}, 4);
// // First deck
// g2d.setColor(deckColor);
// g2d.fillRect(x + 30, y + 10, 100, 10);
// g2d.setColor(borderColor);
// g2d.drawRect(x + 30, y + 10, 100, 10);
deckDrawing.drawDeck(x, y, borderColor, deckColor, g);
// Additional drawing logic for pool and extra deck
@ -140,13 +135,6 @@ public class DrawingLiner {
g2d.setColor(Color.BLACK);
g2d.drawOval(x + 35, y + 15, 30, 10);
}
// if (linerEntity.hasExtraDeck()) {
// g2d.setColor(linerEntity.getSecondaryColor());
// g2d.fillRect(x + 71, y + 1, 49, 9);
// g2d.setColor(Color.BLACK);
// g2d.drawRect(x + 70, y, 50, 10);
// }
}
}