diff options
-rw-r--r-- | game/renpy.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/renpy.rpy b/game/renpy.rpy index d3a0ee5..326dfb7 100644 --- a/game/renpy.rpy +++ b/game/renpy.rpy @@ -227,7 +227,7 @@ label load_world: ## Internal Sanitization $ stdout("WID Target: %d" % (desti)) - if desti > 0: + if desti >= 0: jump load_world # Automatically loop back |