From 3d5fd984d7225c433c3515cf37749dce03383538 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Tue, 6 Jun 2023 18:23:28 +0900 Subject: [PATCH] another text pos change --- .../torvald/terrarum/modulebasegame/ui/UIWorldPortalListing.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/torvald/terrarum/modulebasegame/ui/UIWorldPortalListing.kt b/src/net/torvald/terrarum/modulebasegame/ui/UIWorldPortalListing.kt index 329cfc4f3..e4073d333 100644 --- a/src/net/torvald/terrarum/modulebasegame/ui/UIWorldPortalListing.kt +++ b/src/net/torvald/terrarum/modulebasegame/ui/UIWorldPortalListing.kt @@ -276,7 +276,7 @@ class UIWorldPortalListing(val full: UIWorldPortal) : UICanvas() { batch.color = Color.WHITE worldTexts.forEachIndexed { index, (icon, str) -> batch.draw(icon, textXpos - iconSizeGap + 6, y + thumbh + 3+10 + textualListHeight * index) - App.fontGame.draw(batch, str, textXpos + 6f, y + thumbh + 3+10 + textualListHeight * index) + App.fontGame.draw(batch, str, textXpos + 6f, y + thumbh + 3+10 + textualListHeight * index - 2f) } // size indicator on the memory gauge Toolkit.fillArea(batch, memoryGaugeXpos, memoryGaugeYpos, (memoryGaugeWidth * (selected?.worldInfo!!.dimensionInChunks / chunksMax.toFloat())).ceilInt(), buttonHeight)