Skip to content

Commit

Permalink
agh
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Dec 18, 2023
1 parent 60ddaaf commit 772c47d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/unit_tests/hivelord_count.dm
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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]"

Check failure on line 11 in code/modules/unit_tests/hivelord_count.dm

View workflow job for this annotation

GitHub Actions / Run Linters

Check Regex

world.log<< uses added to here, remove or update check_regex.yml

Check failure on line 11 in code/modules/unit_tests/hivelord_count.dm

View workflow job for this annotation

GitHub Actions / Run Linters

Check Regex

non-bitwise << uses added to here, remove or update check_regex.yml

0 comments on commit 772c47d

Please sign in to comment.