From c80fbb6271f2c004a6136f70a5cdf0c57654eafd Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 18 May 2022 21:04:16 +0200 Subject: [PATCH] [MIRROR] Fixes toy mecha not having the proper say args [MDB IGNORE] (#13708) * Fixes toy mecha not having the proper say args (#67108) This was causing linter failures because someone forgot to include the proper args for this override * Fixes toy mecha not having the proper say args Co-authored-by: Seth Scherer --- code/game/objects/items/toy_mechs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/toy_mechs.dm b/code/game/objects/items/toy_mechs.dm index 4edf8ec00bd..b5444183819 100644 --- a/code/game/objects/items/toy_mechs.dm +++ b/code/game/objects/items/toy_mechs.dm @@ -266,7 +266,7 @@ /** * Override the say proc if they're mute */ -/obj/item/toy/mecha/say() +/obj/item/toy/mecha/say(message, bubble_type, list/spans = list(), sanitize = TRUE, datum/language/language = null, ignore_spam = FALSE, forced = null, filterproof = null) if(!quiet) . = ..()