From 2e503b73ecc7c50e8d3999374aa501786db02a7a Mon Sep 17 00:00:00 2001 From: Alex 'Avunia' Takiya Date: Tue, 29 Dec 2020 23:58:41 +0100 Subject: [PATCH] remove *beep and *deathgasp test steps (#2373) --- code/modules/unit_tests/emoting.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/unit_tests/emoting.dm b/code/modules/unit_tests/emoting.dm index 5795ab34374..165b5f733b2 100644 --- a/code/modules/unit_tests/emoting.dm +++ b/code/modules/unit_tests/emoting.dm @@ -8,8 +8,12 @@ human.say("*shrug") TEST_ASSERT_EQUAL(emotes_used, 1, "Human did not shrug") + //SKYRAT EDIT REMOVAL BEGIN - Following check does not affect us + /* human.say("*beep") TEST_ASSERT_EQUAL(emotes_used, 1, "Human beeped, when that should be restricted to silicons") + */ + //SKYRAT EDIT REMOVAL END human.setOxyLoss(140) @@ -18,8 +22,12 @@ human.say("*shrug") TEST_ASSERT_EQUAL(emotes_used, 1, "Human shrugged while unconscious") + //SKYRAT EDIT REMOVAL BEGIN - Following check fails due to global cooldown from the above test step (.8s) + /* human.say("*deathgasp") TEST_ASSERT_EQUAL(emotes_used, 2, "Human could not deathgasp while unconscious") + */ + //SKYRAT EDIT REMOVAL END /datum/unit_test/emoting/proc/on_emote_used() emotes_used += 1