summaryrefslogtreecommitdiff
path: root/world.lua
diff options
context:
space:
mode:
authorcursed22bc <admin@pixeldawn.org>2026-03-10 00:46:21 +0200
committercursed22bc <admin@pixeldawn.org>2026-03-10 00:46:21 +0200
commitced650f59454d1d69a0a9cc0979e1925bd806021 (patch)
treef51cc8a4dae8e37f691236d91db2ac06a5eb75b2 /world.lua
parentd22630eab00d5be971f8e8f4255fb7d50c15ffbf (diff)
water hacks
Diffstat (limited to 'world.lua')
-rw-r--r--world.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/world.lua b/world.lua
index cbe6e8b..2aff628 100644
--- a/world.lua
+++ b/world.lua
@@ -538,7 +538,7 @@ function World:update(dt)
if self.player.isInLiquid and not self.player.wasInLiquid then
local px = self.player.x + (self.player.width or 16) / 2
local py = self.player.y - 20
- self.playerTextbox:show("Entered water!", { px, py, "center" }, "write", { life = 2, fontSize = 9, centeredText = true, wrapToFit = true })
+ --self.playerTextbox:show("Entered water!", { px, py, "center" }, "write", { life = 2, fontSize = 9, centeredText = true, wrapToFit = true })
end
end