Fluff examine fix (#18814)

Standard examination was in an examine box. This makes it so fluff
examines are also in a box.

Fixes #18438

---------

Co-authored-by: Cody Brittain <cbrittain10@live.com>
This commit is contained in:
Cody Brittain
2024-06-02 18:42:22 +00:00
committed by GitHub
co-authored by Cody Brittain
parent 5ae3436695
commit 91c081d044
41 changed files with 120 additions and 102 deletions
+5 -5
View File
@@ -152,7 +152,7 @@
/atom/movable/openspace/mimic/attack_hand(mob/user)
to_chat(user, SPAN_NOTICE("You cannot reach \the [src] from here."))
/atom/movable/openspace/mimic/examine(...)
/atom/movable/openspace/mimic/examine(..., show_extended)
SHOULD_CALL_PARENT(FALSE)
. = associated_atom.examine(arglist(args)) // just pass all the args to the copied atom
@@ -187,9 +187,9 @@
/atom/movable/openspace/turf_proxy/attack_generic(mob/user as mob)
loc.attack_generic(user)
/atom/movable/openspace/turf_proxy/examine(mob/examiner)
/atom/movable/openspace/turf_proxy/examine(mob/examiner, show_extended)
SHOULD_CALL_PARENT(FALSE)
. = loc.examine(examiner)
. = loc.examine(examiner, show_extended = show_extended)
// -- TURF MIMIC --
@@ -214,6 +214,6 @@
/atom/movable/openspace/turf_mimic/attack_generic(mob/user as mob)
to_chat(user, SPAN_NOTICE("You cannot reach \the [src] from here."))
/atom/movable/openspace/turf_mimic/examine(mob/examiner)
/atom/movable/openspace/turf_mimic/examine(mob/examiner, show_extended)
SHOULD_CALL_PARENT(FALSE)
. = delegate.examine(examiner)
. = delegate.examine(examiner, show_extended = show_extended)