summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-16 08:04:30 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-16 08:04:30 -0300
commitf8122ddfa2b154314b64bfd772d739fb31a43971 (patch)
tree01ed2a71facbfa0853968f15c3547dc9327e1308
parenta859841cb9a600a1e92f6c0730ca5f10dc2a82d6 (diff)
downloadclient-f8122ddfa2b154314b64bfd772d739fb31a43971.tar.gz
client-f8122ddfa2b154314b64bfd772d739fb31a43971.tar.bz2
client-f8122ddfa2b154314b64bfd772d739fb31a43971.tar.xz
client-f8122ddfa2b154314b64bfd772d739fb31a43971.zip
Replace persistent.SkipHPAnimation with text CPS config
-rw-r--r--game/misc.rpy2
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