Skip to content

Commit

Permalink
Lodge the new attribute as an equality field
Browse files Browse the repository at this point in the history
  • Loading branch information
Gouvernathor committed Oct 19, 2023
1 parent 1a36bdb commit 084a880
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions renpy/common/00inputvalues.rpy
Expand Up @@ -143,7 +143,7 @@ init -1510 python:
"""

identity_fields = [ ]
equality_fields = [ "variable", "returnable" ]
equality_fields = [ "variable", "returnable", "disable_on_enter" ]

def __init__(self, variable, default=True, returnable=False, disable_on_enter=False):
self.variable = variable
Expand Down Expand Up @@ -181,7 +181,7 @@ init -1510 python:
"""

identity_fields = [ 'screen' ]
equality_fields = [ "variable", "returnable" ]
equality_fields = [ "variable", "returnable", "disable_on_enter" ]

def __init__(self, variable, default=True, returnable=False, disable_on_enter=False):
self.variable = variable
Expand Down Expand Up @@ -224,7 +224,7 @@ init -1510 python:
"""

identity_fields = [ "object"]
equality_fields = [ "field", "returnable" ]
equality_fields = [ "field", "returnable", "disable_on_enter" ]

def __init__(self, object, field, default=True, returnable=False, disable_on_enter=False):
self.object = object
Expand Down Expand Up @@ -261,7 +261,7 @@ init -1510 python:
"""

identity_fields = [ "dict" ]
equality_fields = [ "key", "returnable" ]
equality_fields = [ "key", "returnable", "disable_on_enter" ]

def __init__(self, dict, key, default=True, returnable=False, disable_on_enter=False):
self.dict = dict
Expand Down

0 comments on commit 084a880

Please sign in to comment.