remove *beep and *deathgasp test steps (#2373)

This commit is contained in:
Alex 'Avunia' Takiya
2020-12-29 23:58:41 +01:00
committed by GitHub
parent 97c70e3d06
commit 2e503b73ec
+8
View File
@@ -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