From c815a2cd2af0952d1e3138af899da331aabfab20 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Fri, 30 Jun 2023 02:53:33 -0500 Subject: [PATCH] Fixes a compiler warning when compiling unit tests (that I caused) (#76402) Fixes this ![image](https://github.com/tgstation/tgstation/assets/51863163/6cde5634-4b83-4c9a-8336-f234345bbcce) --- code/modules/unit_tests/high_five.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/unit_tests/high_five.dm b/code/modules/unit_tests/high_five.dm index b5ff4f08cab0..16b7e3f9545d 100644 --- a/code/modules/unit_tests/high_five.dm +++ b/code/modules/unit_tests/high_five.dm @@ -30,6 +30,7 @@ /datum/unit_test/high_five_too_slow/Run() var/mob/living/carbon/human/offer_guy = allocate(/mob/living/carbon/human/consistent) var/mob/living/carbon/human/take_guy = allocate(/mob/living/carbon/human/consistent) + pass(take_guy) // This guy just needs to stand around // Just testing a too slow setup - so long as the setup works, we're good. offer_guy.emote("slap")