Removes ++ and -- in conditionals (#71925)

This commit is contained in:
Time-Green
2022-12-12 11:02:57 -08:00
committed by GitHub
parent 965e1f3d59
commit ddf453a170
15 changed files with 34 additions and 17 deletions
+2 -1
View File
@@ -793,7 +793,8 @@
var/iterable = 0
for(var/datum/antagonist/role in subject.mind.antag_datums)
special_role_description += "[role.name]"
if(++iterable != length(subject.mind.antag_datums))
iterable++
if(iterable != length(subject.mind.antag_datums))
special_role_description += ", "
special_role_description += "</b></font>"
else