summaryrefslogtreecommitdiff
path: root/PressurePlate.py
diff options
context:
space:
mode:
Diffstat (limited to 'PressurePlate.py')
-rw-r--r--PressurePlate.py2
1 files changed, 0 insertions, 2 deletions
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)