diff --git a/code/modules/unit_tests/hivelord_count.dm b/code/modules/unit_tests/hivelord_count.dm index 02a869f5b9bc..2d7ef551063e 100644 --- a/code/modules/unit_tests/hivelord_count.dm +++ b/code/modules/unit_tests/hivelord_count.dm @@ -1,5 +1,5 @@ /datum/unit_test/count_mob_spawn_items/Run() - var/int total_items_created = 0 + var/total_items_created = 0 for (var/i in 1 to 100) var/obj/effect/mob_spawn/human/corpse/damaged/legioninfested/SpawnEffect = new /obj/effect/mob_spawn/human/corpse/damaged/legioninfested @@ -8,4 +8,4 @@ for (var/obj/item/I in SpawnEffect.loc.get_contents()) total_items_created += 1 - world.log << "Total items created from mob_spawn: [total_items_created]" + world.log << "Total items created from mob_spawn: [total_items_created]"