diff --git a/code/modules/client/client defines.dm b/code/modules/client/client defines.dm index bb243c3e6aa..208a4f255d9 100644 --- a/code/modules/client/client defines.dm +++ b/code/modules/client/client defines.dm @@ -92,4 +92,6 @@ var/datum/chatOutput/chatOutput // Donator stuff. - var/donator_level = DONATOR_LEVEL_NONE \ No newline at end of file + var/donator_level = DONATOR_LEVEL_NONE + + var/var_edited = FALSE diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 8f8d26efebe..a5e64a29c7f 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -232,7 +232,7 @@ to_chat(src, "Become a BYOND member to access member-perks and features, as well as support the engine that makes this game possible. Click here to find out more.") return 0 return 1 - + //Like for /atoms, but clients are their own snowflake FUCK /client/proc/setDir(newdir) dir = newdir @@ -628,3 +628,6 @@ /client/proc/colour_transition(var/list/colour_to = null, var/time = 10) //Call this with no parameters to reset to default. animate(src, color=colour_to, time=time, easing=SINE_EASING) + +/client/proc/on_varedit() + var_edited = TRUE