diff --git a/src/main/java/eu/m724/Renderer.java b/src/main/java/eu/m724/Renderer.java index 9f9f15b..059bb5b 100644 --- a/src/main/java/eu/m724/Renderer.java +++ b/src/main/java/eu/m724/Renderer.java @@ -45,6 +45,7 @@ public class Renderer { Rectangle2D bounds = font.getStringBounds(text, frc); int textWidth = (int) bounds.getWidth(); int textHeight = (int) bounds.getHeight(); + y += textHeight; String[] lines; if (textWidth > TILE_SIZE) { // TODO ideally this should be splitting by word