From 732c5f63a5fdc6a77f5fafb156831b86df80ed43 Mon Sep 17 00:00:00 2001 From: Lucy Date: Sun, 30 Mar 2025 11:34:32 -0400 Subject: [PATCH] Fixes the _winget SDQL2/Lua wrapper (#90327) ## About The Pull Request this makes it so the `_winget` wrapper actually _returns_ what `winget` returns. ## Why It's Good For The Game this wrapper is literally useless otherwise ## Changelog :cl: fix: Fixed the _winget SDQL2/Lua wrapper, so it actually returns the return value of winget. /:cl: --- code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm index eb9f39a8da4..47dd4c05eab 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm @@ -272,7 +272,7 @@ winset(player, control_id, params) /proc/_winget(player, control_id, params) - winget(player, control_id, params) + return winget(player, control_id, params) /proc/_text2path(text) return text2path(text)