mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-26 23:46:48 +01:00
11 lines
558 B
Plaintext
11 lines
558 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2025 Citadel Station Developers *//
|
|
|
|
/mob/observer/click_interaction_chain(datum/event_args/actor/clickchain/clickchain, clickchain_flags)
|
|
// yeaaah let's not remote control a ghost, yea?
|
|
// in the future this should probably only be for 'dead' because technically we can have
|
|
// other observers, but for now, this holds true
|
|
ASSERT(clickchain.initiator == src)
|
|
clickchain.target.attack_ghost(src)
|
|
return CLICKCHAIN_DO_NOT_PROPAGATE | CLICKCHAIN_DID_SOMETHING
|