mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
* JSON Logging Take Two * Fixes the conflicts and makes our logs all comply with the new logging framework, hopefully. --------- Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com>
18 lines
366 B
Plaintext
18 lines
366 B
Plaintext
///Protects a datum from being VV'd or spawned through admin manipulation
|
|
#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;\
|
|
}\
|
|
##Path/Read(savefile/savefile){\
|
|
qdel(src);\
|
|
}\
|
|
##Path/Write(savefile/savefile){\
|
|
return;\
|
|
}
|