Replacing more C-style for loops with the faster, traditional ones. (#62908)

This commit is contained in:
Ghom
2021-11-19 02:39:05 +01:00
committed by GitHub
parent d4f4e05a37
commit 243cd2bfa5
26 changed files with 60 additions and 60 deletions
@@ -42,9 +42,9 @@
dna_to_add = list("Non-human DNA" = random_blood_type()) //else, generate a random bloodtype for it.
for(var/i = 1, i<= gibtypes.len, i++)
for(var/i in 1 to gibtypes.len)
if(gibamounts[i])
for(var/j = 1, j<= gibamounts[i], j++)
for(var/j in 1 to gibamounts[i])
var/gibType = gibtypes[i]
gib = new gibType(loc, diseases)