From f575bad5e1d7780537c56b41ffdcfd342ada35e5 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Mon, 31 Jul 2023 15:00:17 +1000 Subject: [PATCH] fix broken LiquidItem preview (LOL) --- source/game/StarWorldClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/StarWorldClient.cpp b/source/game/StarWorldClient.cpp index f1f4300..cc7a056 100644 --- a/source/game/StarWorldClient.cpp +++ b/source/game/StarWorldClient.cpp @@ -578,7 +578,7 @@ void WorldClient::render(WorldRenderData& renderData, unsigned bufferTiles) { if (previewTile.liqId != EmptyLiquidId) { renderTile.liquidId = previewTile.liqId; - renderTile.liquidLevel = 1.0f; + renderTile.liquidLevel = 255; } }