diff --git a/game/scripts/gui/mods.rpy b/game/scripts/gui/mods.rpy index 7a045e70..efb1cb1e 100644 --- a/game/scripts/gui/mods.rpy +++ b/game/scripts/gui/mods.rpy @@ -63,7 +63,7 @@ screen mods(): text "[name]": style "mods_text" size 16 - if not compat >= compatible_version: + if not compat >= mods_compatible: color "#ff8000" text "[version]": @@ -101,7 +101,7 @@ screen mods(): add logo xalign 0.5 size (320, 240) text "[name]\n[version]" offset (6, 6) - if not compat >= compatible_version: + if not compat >= mods_compatible: text "{color=#ff8000}[compat]{/color}" align (1.0, 1.0) offset (-6, -3) else: text "{color=#228B22}[compat]{/color}" align (1.0, 1.0) offset (-6, -3)