From ef6abc27cec35e32acef66c5077ffcc6bedde983 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Mon, 3 Nov 2025 00:43:42 +0200 Subject: feat: move on keydown alternative, som tutorial levels --- PressurePlate.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'PressurePlate.py') diff --git a/PressurePlate.py b/PressurePlate.py index fcebe4b..acc0d42 100644 --- a/PressurePlate.py +++ b/PressurePlate.py @@ -5,12 +5,10 @@ class PressurePlate: def __init__(self, pos): self.pos = pos self._trails = [] - print(f"at pos {self.pos.toString()} trails: {self._trails}") self._isActive = False def addTrail(self, trail): - print(f"plate at {self.pos.toString()} got trail: {trail}") self._trails.append(trail) -- cgit v1.2.3