mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
[MIRROR] Cuts the number of apply_damage copypaste procs from 3(.5) to 1, fixing a few bugs along the way [MDB IGNORE] (#24619)
* Cuts the number of `apply_damage` copypaste procs from 3(.5) to 1, fixing a few bugs along the way * Update _species.dm * Update damage_procs.dm * Modular adjustments * Update mutant_species.dm * Update mutant_species.dm --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
co-authored by
MrMelbert
Bloop
parent
f4698f05af
commit
e7a1ec5ba2
@@ -58,10 +58,10 @@
|
||||
"health" = creature.health,
|
||||
"name" = creature.name,
|
||||
"pilot" = pilot,
|
||||
"brute" = creature.get_current_damage_of_type(BRUTE),
|
||||
"burn" = creature.get_current_damage_of_type(BURN),
|
||||
"tox" = creature.get_current_damage_of_type(TOX),
|
||||
"oxy" = creature.get_current_damage_of_type(OXY),
|
||||
"brute" = creature.getBruteLoss(),
|
||||
"burn" = creature.getFireLoss(),
|
||||
"tox" = creature.getToxLoss(),
|
||||
"oxy" = creature.getOxyLoss(),
|
||||
))
|
||||
|
||||
return hosted_avatars
|
||||
|
||||
Reference in New Issue
Block a user