mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
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:
co-authored by
Cody Brittain
parent
5ae3436695
commit
91c081d044
@@ -51,7 +51,7 @@
|
||||
var/obj/item/device/electronic_assembly/clothing/IC = null
|
||||
var/obj/item/integrated_circuit/built_in/action_button/action_circuit = null // This gets pulsed when someone clicks the button on the hud, OR when certain interactions are performed (such as clicking on something with gloves worn)
|
||||
|
||||
/obj/item/clothing/examine(mob/user)
|
||||
/obj/item/clothing/examine(mob/user, distance, is_adjacent, infix, suffix, show_extended)
|
||||
if(IC)
|
||||
examinate(user, IC)
|
||||
. = ..()
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
for(var/obj/item/integrated_circuit/built_in/device_input/I in EA.contents)
|
||||
I.do_work()
|
||||
|
||||
/obj/item/device/assembly/electronic_assembly/examine(mob/user)
|
||||
/obj/item/device/assembly/electronic_assembly/examine(mob/user, show_extended)
|
||||
. = ..()
|
||||
if(EA)
|
||||
for(var/obj/item/integrated_circuit/IC in EA.contents)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
a creative player the means to solve many problems. Circuits are held inside an electronic assembly, and are wired using special tools.
|
||||
*/
|
||||
|
||||
/obj/item/integrated_circuit/examine(mob/user)
|
||||
/obj/item/integrated_circuit/examine(mob/user, show_extended)
|
||||
interact(user)
|
||||
external_examine(user)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user