From 89466de29ee152e28c19557117c362cdb1fade2d Mon Sep 17 00:00:00 2001
From: Ghommie <42542238+Ghommie@users.noreply.github.com>
Date: Tue, 4 Feb 2020 02:30:14 +0100
Subject: [PATCH] Good catch linter.
---
code/datums/elements/mob_holder.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/datums/elements/mob_holder.dm b/code/datums/elements/mob_holder.dm
index 6ee9bddc90..5b471a0dc7 100644
--- a/code/datums/elements/mob_holder.dm
+++ b/code/datums/elements/mob_holder.dm
@@ -29,9 +29,9 @@
UnregisterSignal(source, COMSIG_CLICK_ALT)
UnregisterSignal(source, COMSIG_PARENT_EXAMINE)
-/datum/element/mob_holder/proc/on_examine(mob/living/source, mob/user, .)
+/datum/element/mob_holder/proc/on_examine(mob/living/source, mob/user, list/examine_list)
if(ishuman(user) && !istype(source.loc, /obj/item/clothing/head/mob_holder))
- . += "Looks like [source.p_they(TRUE)] can be picked up with Alt+Click!"
+ examine_list += "Looks like [source.p_they(TRUE)] can be picked up with Alt+Click!"
/datum/element/mob_holder/proc/mob_try_pickup(mob/living/source, mob/user)
if(!ishuman(user) || !user.Adjacent(source) || user.incapacitated())