forked from SilverStudioGames/WTS
Bug fixes
* Disabled DollChibi place method default pause (unintended) * Load audio before fades during retrospection * Simplify achievements if block
This commit is contained in:
parent
a9ae016fe1
commit
ce435cb69c
@ -1528,12 +1528,12 @@ label cho_quid_E12:
|
||||
hoo @ cheeks blush "" ("base", "narrow", "base", "R", xpos=100, ypos="base", flip=True)
|
||||
cho @ cheeks heavy_blush "" ("horny", "narrow", "base", "mid", xpos=460, ypos="base", flip=False)
|
||||
|
||||
hide screen blkfade
|
||||
with d5
|
||||
|
||||
play background "sounds/outskirts.ogg" fadein 2
|
||||
play music "music/march-of-the-spoons-by-kevin-macleod-from-filmmusic-io.ogg" fadein 1 fadeout 1 if_changed
|
||||
|
||||
hide screen blkfade
|
||||
with d5
|
||||
|
||||
hoo @ cheeks blush "And all those feelings are imbued into this very broom..." ("base", "narrow", "base", "R")
|
||||
hoo @ cheeks blush_heavy "I remember using it at the Quidditch world cup finals... Thousands of people watching..." ("grin", "closed", "worried", "mid")
|
||||
cho @ cheeks heavy_blush "" ("horny", "narrow", "base", "downR")
|
||||
|
@ -151,7 +151,7 @@ init 5 python:
|
||||
self.pose = pose
|
||||
self.update()
|
||||
|
||||
def place(self, pos=None, speed=1.0, pause=True, at_list=[], pose=None, xzoom=None):
|
||||
def place(self, pos=None, speed=1.0, pause=False, at_list=[], pose=None, xzoom=None):
|
||||
self.set_pose(pose or self.idle)
|
||||
|
||||
self.atl_time = 0
|
||||
|
@ -1,9 +1,8 @@
|
||||
init python:
|
||||
def periodic_achievements():
|
||||
if not hasattr(store, "achievements"):
|
||||
if not hasattr(store, "achievements") or _in_replay:
|
||||
return
|
||||
|
||||
if _in_replay is None:
|
||||
if not achievements.status('gold') and game.gold >= 10000:
|
||||
achievements.unlock("gold")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user