From 002fbd2afed5da268071dd8271fb0667b60b79c6 Mon Sep 17 00:00:00 2001 From: Dominion Date: Mon, 3 Apr 2023 01:26:29 -0400 Subject: [PATCH] Fix mishandling of world.params --- tests/DMAPI/BasicOperation/Test.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DMAPI/BasicOperation/Test.dm b/tests/DMAPI/BasicOperation/Test.dm index ad65de0e1a..42d311056c 100644 --- a/tests/DMAPI/BasicOperation/Test.dm +++ b/tests/DMAPI/BasicOperation/Test.dm @@ -19,7 +19,7 @@ sleep(50) world.TgsTargetedChatBroadcast("Sample admin-only message", TRUE) - var/list/world_params = params2list(world.params) + var/list/world_params = world.params if(!("test" in world_params) || world_params["test"] != "bababooey") text2file("Expected parameter test=bababooey but did not receive", "test_fail_reason.txt")