From b5a8ca6e2248b1b32b3d8acfdfd868c08871aff3 Mon Sep 17 00:00:00 2001 From: ccomp5950 Date: Sun, 10 Jan 2016 00:35:19 -0500 Subject: [PATCH] Removes qdel from mob unit tests. Speeds up Unit Testing for mobs instead of taking 1 second per test. --- code/unit_tests/mob_tests.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/unit_tests/mob_tests.dm b/code/unit_tests/mob_tests.dm index c247803831e..dabdb9b0815 100644 --- a/code/unit_tests/mob_tests.dm +++ b/code/unit_tests/mob_tests.dm @@ -49,7 +49,6 @@ datum/unit_test/human_breath/check_result() else fail("Mob is not taking oxygen damage. Damange is [ending_oxyloss]") - qdel(H) return 1 // return 1 to show we're done and don't want to recheck the result. // ============================================================================ @@ -211,8 +210,6 @@ datum/unit_test/mob_damage/start_test() else pass(msg) - qdel(H) - return 1 // =================================================================