diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-16 08:04:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-16 08:04:30 -0300 |
commit | f8122ddfa2b154314b64bfd772d739fb31a43971 (patch) | |
tree | 01ed2a71facbfa0853968f15c3547dc9327e1308 /game | |
parent | a859841cb9a600a1e92f6c0730ca5f10dc2a82d6 (diff) | |
download | client-f8122ddfa2b154314b64bfd772d739fb31a43971.tar.gz client-f8122ddfa2b154314b64bfd772d739fb31a43971.tar.bz2 client-f8122ddfa2b154314b64bfd772d739fb31a43971.tar.xz client-f8122ddfa2b154314b64bfd772d739fb31a43971.zip |
Replace persistent.SkipHPAnimation with text CPS config
Diffstat (limited to 'game')
-rw-r--r-- | game/misc.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/misc.rpy b/game/misc.rpy index b67a757..68ac6f9 100644 --- a/game/misc.rpy +++ b/game/misc.rpy @@ -35,7 +35,7 @@ init python: counting = 0 # We can use dmgfactor - if ((damage > 10) or (damage < 10)) and (not persistent.SkipHPAnimation) and (not fast): + if ((damage > 10) or (damage < 10)) and (preferences.text_cps) and (not fast): fixfactor=damage%10 dmgfactor=int(damage/10) dbg_interactions=0 |