fix: still default to not processing the world

This commit is contained in:
əlemi 2023-11-02 06:23:04 +01:00
parent ff39260fa4
commit 5586d1fc9c
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -93,7 +93,7 @@ class GameWorld(Scaffold):
)
# Since this might require more resources, allow to disable it
if not self.cfg.getboolean("process_world", fallback=True):
if not self.cfg.getboolean("process_world", fallback=False):
return
@self.on_packet(PacketMapChunk)