diff --git a/launcher/game/new_project.rpy b/launcher/game/new_project.rpy index f915920..ec21e39 100644 --- a/launcher/game/new_project.rpy +++ b/launcher/game/new_project.rpy @@ -48,10 +48,7 @@ init python: interface.error(_("The `ddlc-mac.zip` file extracted is zipped improperly or corrupted."), _("Please re-download the ZIP from 'https://ddlc.moe'")) else: interface.error(_("The `ddlc-win.zip` file extracted is zipped improperly or corrupted."), _("Please re-download the ZIP from 'https://ddlc.moe'")) - if renpy.macintosh: - os.remove(persistent.project_dir + '/DDLC.app/Contents/Resources/autorun/game/scripts.rpa') - else: - os.remove(persistent.project_dir + '/game/scripts.rpa') + os.remove(persistent.project_dir + '/game/scripts.rpa') shutil.rmtree(persistent.projects_directory + '/temp') def ddlc_copy(): import shutil diff --git a/launcher/game/project.rpy b/launcher/game/project.rpy index 56bb079..c11c913 100644 --- a/launcher/game/project.rpy +++ b/launcher/game/project.rpy @@ -782,7 +782,7 @@ label ddlc_zip: python hide: if renpy.macintosh == True: if persistent.safari == True: - interface.interaction(_("DDLC ZIP Directory"), _("Please choose where the `ddlc-win` folder is located using the directory chooser.\n{b}The directory chooser may have opened behind this window.{/b}"), _("This launcher will scan for projects in this directory, will create new projects in this directory, and will place built projects into this directory."),) + interface.interaction(_("DDLC ZIP Directory"), _("Please choose where the `ddlc-mac` folder is located using the directory chooser.\n{b}The directory chooser may have opened behind this window.{/b}"), _("This launcher will scan for projects in this directory, will create new projects in this directory, and will place built projects into this directory."),) else: interface.interaction(_("DDLC ZIP Directory"), _("Please choose where `ddlc-mac.zip` is located using the directory chooser.\n{b}The directory chooser may have opened behind this window.{/b}"), _("This launcher will scan for projects in this directory, will create new projects in this directory, and will place built projects into this directory."),) else: