Files
Bubberstation/code/__DEFINES/_protect.dm
2020-07-16 03:02:40 +03:00

12 lines
241 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;\
}