Merge pull request #840 from Comicao1/Races-port

Teshari [TESTING]
This commit is contained in:
BongaTheProto
2023-09-10 23:59:28 -05:00
committed by GitHub
70 changed files with 1771 additions and 18 deletions
+2 -2
View File
@@ -574,8 +574,8 @@
var/tbrute = round( (brute_dam/max_damage)*3, 1 )
var/tburn = round( (burn_dam/max_damage)*3, 1 )
if((tbrute != brutestate) || (tburn != burnstate))
brutestate = tbrute
burnstate = tburn
brutestate = min(tbrute, 3)
burnstate = min(tburn, 3) //So, WHY NOBODY THOUGHT ON THIS BEFORE??? //Comicao1
return TRUE
return FALSE