Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-07-31 15:00:17 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-07-31 15:00:17 +1000
commitf575bad5e1d7780537c56b41ffdcfd342ada35e5 (patch)
tree6ca9b239f550b4d62dfb89823436e1697caa4793
parentf4ff9dcc492268f46a0811e752e1ce17a588f640 (diff)
fix broken LiquidItem preview (LOL)
-rw-r--r--source/game/StarWorldClient.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
}