Implement internal 'en' language, and backport splashscreen fixes from Wani

This commit is contained in:
2024-10-05 08:04:35 -05:00
parent 7d2203dc04
commit dabac1f5f0
5 changed files with 34 additions and 22 deletions

View File

@ -54,6 +54,20 @@ init python:
if renpy.seen_image("fang tail"):
renpy.mark_image_seen("fang_tail_movie")
# Determine the splash type for the Snoot game logo
$ persistent.splashtype = random.randint(0,2000 - 1)
label before_main_menu:
# Force users pre-Patch 11 to use english if they were on 'None'
if preferences.language == None:
$ preferences.language = 'en'
# Call initial language setup screen
if (persistent.languaged_up is None):
$ preferences.set_volume('ui', config.default_sfx_volume)
$ persistent.languaged_up = True
call screen lang_sel
label start: