From 5bf751f4f2c426e587bb6fca9b10a52ec5c93895 Mon Sep 17 00:00:00 2001
From: ReddeyfishVor <36580397+ReddeyfishVor@users.noreply.github.com>
Date: Sat, 14 Apr 2018 11:09:41 -0700
Subject: [PATCH] Mimics no longer have tooltips
This allows them to better perform their role, hiding as an object
---
code/modules/mob/living/simple_animal/aliens/mimic.dm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/code/modules/mob/living/simple_animal/aliens/mimic.dm b/code/modules/mob/living/simple_animal/aliens/mimic.dm
index 8230256086f..c13e1721cea 100644
--- a/code/modules/mob/living/simple_animal/aliens/mimic.dm
+++ b/code/modules/mob/living/simple_animal/aliens/mimic.dm
@@ -48,6 +48,12 @@
..()
qdel(src)
+/mob/living/simple_animal/hostile/mimic/MouseEntered(location, control, params)
+ ..()
+ closeToolTip(usr)
+ // ideally, we'd remove the code in ..() that opens the tooltip,
+ // but then we'd need to duplicate all the other code in ..()
+
//
// Crate Mimic
//
@@ -194,4 +200,4 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca
if(istype(L))
if(prob(15))
L.Weaken(1)
- L.visible_message("\the [src] knocks down \the [L]!")
\ No newline at end of file
+ L.visible_message("\the [src] knocks down \the [L]!")