mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
789c72216c
* Initial * Lowercase, show losers the word * cleanup so losers properly get called out in round trivia * shitposting * god shall not walk upon the domain of those above him, just as those he's made can't walk into his domain. Wordle is sacred and shall not be observed. * require parent call on can_vv_get * update protection macro to properly call parent, doh * fucking spaces!!! rarrghh!!! * white-labeling * Kash Movement Fix
13 lines
242 B
Plaintext
13 lines
242 B
Plaintext
///Protects a datum from being VV'd
|
|
#define GENERAL_PROTECT_DATUM(Path)\
|
|
##Path/can_vv_get(var_name){\
|
|
.=..();\
|
|
return FALSE;\
|
|
}\
|
|
##Path/vv_edit_var(var_name, var_value){\
|
|
return FALSE;\
|
|
}\
|
|
##Path/CanProcCall(procname){\
|
|
return FALSE;\
|
|
}
|