forked from Cavemanon/SnootGame
Saves Directory change & Changed endings filename
This commit is contained in:
@@ -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
|
||||
@@ -86,6 +86,6 @@ label .ending:
|
||||
pause 20
|
||||
elif anonscore >= 4 and fangscore >= 4:
|
||||
scene ending_d_cg with Dissolve(1.5)
|
||||
pause 20
|
||||
pause 20
|
||||
scene black with Dissolve(2)
|
||||
return
|
||||
|
Reference in New Issue
Block a user