From 1475dd4020ec24df8b29f5d90d89843b64f93f95 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Sun, 2 Nov 2025 22:36:35 +0200 Subject: feat: hacky level changing and parsing system, also fixed unintentional class-wide variables --- Walls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Walls.py') diff --git a/Walls.py b/Walls.py index 860a7ef..d591291 100644 --- a/Walls.py +++ b/Walls.py @@ -7,9 +7,9 @@ class Walls: Supports iterating over the walls and checking if there is a wall at a specific coordinate. Useful as a wrapper to later increase performance of these operations.""" - _walls = [] def __init__(self, walls): + _walls = [] self._walls = walls def fromString(wallString): -- cgit v1.2.3