Implement internal 'en' language, and backport splashscreen fixes from Wani
This commit is contained in:
@ -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:
|
||||
|
||||
|
Reference in New Issue
Block a user