Skip to content

Commit

Permalink
Damage Coeff order of operations (#1586)
Browse files Browse the repository at this point in the history
Order of operations
  • Loading branch information
LanceSmites328 authored Oct 30, 2023
1 parent ffef01c commit 730f213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/simple_animal/simple_animal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@
if(atmos_requirements)
atmos_requirements = string_assoc_list(atmos_requirements)
if (islist(damage_coeff))
damage_coeff = makeDamCoeff(damage_coeff)
unmodified_damage_coeff_datum = makeDamCoeff(damage_coeff)
damage_coeff = makeDamCoeff(damage_coeff)
else if (!damage_coeff)
damage_coeff = makeDamCoeff()
unmodified_damage_coeff_datum = makeDamCoeff()
Expand Down

0 comments on commit 730f213

Please sign in to comment.