Merge pull request #2393 from Yoshax/flashtweak

Makes flash confused duration the same length as the flash blurry eyes
This commit is contained in:
Anewbe
2016-08-30 18:24:17 -05:00
committed by GitHub
+1 -1
View File
@@ -80,7 +80,7 @@
flash_strength *= H.species.flash_mod
if(flash_strength > 0)
H.confused = max(H.confused, flash_strength)
H.confused = max(H.confused, flash_strength + 5)
H.eye_blind = max(H.eye_blind, flash_strength)
H.eye_blurry = max(H.eye_blurry, flash_strength + 5)
H.flash_eyes()