Merge pull request 'Save incomptibility' (#107) from nutbuster/SnootGame:Monster-Update-6 into Monster-Update-6

Reviewed-on: https://git.snootgame.xyz/Cavemanon/SnootGame/pulls/107
This commit is contained in:
Nutbuster 2021-10-14 19:45:25 +00:00
commit 55825bc6ac
12 changed files with 16 additions and 16 deletions

View File

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -150,7 +150,7 @@ define config.default_sfx_volume = 0.90
## This generally should not be changed, and if it is, should always be a
## literal string, not an expression.
define config.save_directory = "DinoGirlGamu-1592542119"
define config.save_directory = "CavemanonSnootGame"
## Icon ########################################################################

View File

@ -1,4 +1,5 @@
###Updater Python stuff###
init python:
if renpy.variant("pc"): #Don't run this on mobile, not supported
if persistent.updateresult is None:

View File

@ -930,7 +930,6 @@ transform wiggle:
linear 10.0 yalign 1.0 clockwise circles 1
repeat
label start:
$ fangscore = 0
$ anonscore = 0

View File

@ -1056,7 +1056,7 @@ label chapter_14A:
scene black with Dissolve(4)
pause 2
scene 1of4 with Dissolve(2)
scene e1of4 with Dissolve(2)
pause
scene black with Dissolve(3)

View File

@ -327,7 +327,7 @@ label chapter_14B:
window hide
pause 2
scene 2of4 with Dissolve(2)
scene e2of4 with Dissolve(2)
pause
scene black with Dissolve(3)

View File

@ -739,7 +739,7 @@ label chapter_14C:
$ quick_menu = False
window hide
scene 3of4 with fade
scene e3of4 with fade
stop music fadeout 15.0
pause 16
scene black with fade

View File

@ -638,7 +638,7 @@ label chapter_14D:
"Our lips meld together as we embrace just like we were teens again."
$ quick_menu = False
window hide
scene 4of4 with fade
scene e4of4 with fade
stop music fadeout 15.0
pause 16
scene black with fade

View File

@ -1,10 +1,10 @@
init -1 python:
def ending_image():
#0b0000, ABCD, flash the bits with |=, check with &
#0b0000, DCBA, flash the bits with |=, check with &
endings = 0b0000
_e = 0b1
for i in range(1, 5):
fn = str(i)+"of4"
fn = "e"+str(i)+"of4"
endings |= (_e * renpy.seen_image(fn))
_e = _e << 0b1
persistent.endings = endings