mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 04:41:27 +01:00
7ff489ec36
* click code start * snake_span * Update click.dm * Update click.dm * Update click.dm * WIP signal organization * Moooore signals * cuffs * decon * whoops * revert this * Proper name * movable moved * These * Theeese * Sort these * Update cyborg.dm
11 lines
516 B
Plaintext
11 lines
516 B
Plaintext
// conflict checking elements
|
|
/// (id) - returns flags - Registered on something by conflict checking elements.
|
|
#define COMSIG_CONFLICT_ELEMENT_CHECK "conflict_element_check"
|
|
/// A conflict was found
|
|
#define ELEMENT_CONFLICT_FOUND (1<<0)
|
|
|
|
///Misc signal for checking for godmode. Used by /datum/element/godmode
|
|
#define COMSIG_CHECK_FOR_GODMODE "check_for_godmode"
|
|
///Returned by /datum/element/godmode if the target is in godmode and whatever we're checking we want to cancel
|
|
#define COMSIG_GODMODE_CANCEL (1<<0)
|