One vehicle at a time.
[koperkapel.git] / koperkapel / world.py
index b0e3debfd16d830ee8d030aee2aa2eb4e5be8a3a..d13b07c10ea5c8e3c81289c0ad33792639136e13 100644 (file)
@@ -30,7 +30,6 @@ class World:
         ]
         state["vehicles"] = {
             "current": "walking",
-            "available": ["walking"],
         }
         state["level"] = {
             "name": "level1",
@@ -128,3 +127,9 @@ class WorldListProxy(WorldBaseProxy):
 
     def __getitem__(self, index):
         return _maybe_subproxy(self, index, self._state[index])
+
+    def __len__(self):
+        return len(self._state)
+
+    def __bool__(self):
+        return bool(self._state)