diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..b798fea1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "files.exclude": { + "**/*.rpyc": true, + "**/*.rpa": true, + "**/*.rpymc": true, + "**/cache/": true + } +} diff --git a/game/lockdown_check.rpy b/game/lockdown_check.rpy index 4eb3e34d..27c0b1cf 100644 --- a/game/lockdown_check.rpy +++ b/game/lockdown_check.rpy @@ -24,7 +24,7 @@ label lockdown_check: $ persistent.lockdown_warning = True return - elif renpy.version_tuple > (7, 5, 1, 22070801) and not persistent.lockdown_warning: + elif renpy.version_tuple > (7, 5, 3, 22083102) and not persistent.lockdown_warning: "{b}Warning:{/b} The version of Ren'Py you are trying to mod DDLC on has not been tested for modding compatibility." "The last recent version of Ren'Py that works for DDLC mods is \"{i}Ren'Py 7.5.1{/i}\"." "Running DDLC or your DDLC mod on a higher version than the one tested may introduce bugs and other game breaking features." diff --git a/game/options.rpy b/game/options.rpy index 1f77913a..2845e049 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -14,7 +14,7 @@ define config.name = "DDLC Mod Template – Python 2 Edition" define gui.show_name = True # This controls the version number of your mod. -define config.version = "4.0.1-Py2" +define config.version = "4.0.2-Py2" # This adds information about your mod in the About screen. # DDLC does not have a 'About' screen so you can leave this blank.