mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
4924a73ba2
* click code start * snake_span * Update click.dm * Update click.dm * Update click.dm * Update click.dm * Fixes borg ctrl_click Also implements allowing blocking of items being ctrl_clicked * Makes the statpanel not annihilate peoples ratelimiter Statpanel calls aren't really user controlled (and 180 of them get sent upon loading, as each verb counts as a topic calls when it calls Send-Tabs) so let's not count it towards the user when they log in.
10 lines
358 B
Plaintext
10 lines
358 B
Plaintext
#define TK_MAXRANGE 15
|
|
|
|
/// Action has succeeded, preventing further alt click interaction
|
|
#define CLICK_ACTION_SUCCESS (1<<0)
|
|
/// Action failed, preventing further alt click interaction
|
|
#define CLICK_ACTION_BLOCKING (1<<1)
|
|
/// Either return state
|
|
#define CLICK_ACTION_ANY (CLICK_ACTION_SUCCESS | CLICK_ACTION_BLOCKING)
|
|
/// Use NONE for continue interaction
|