Fix boolean

This commit is contained in:
Gouvernathor 2024-04-03 00:24:31 +02:00
parent 7ca17b7ba7
commit 11be2af833
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ init -1 python:
if config.developer:
def __setattr__(self, attr, value):
if getattr(self, attr, not value) != value:
if getattr(self, attr, value) != value:
id = self.id
rollback = f"{stdcol.UNDERLINE}(Rollback){stdcol.END} " if renpy.in_rollback() else ""
caller_id = renpy.get_filename_line()