From 299f2b0d025ee7c8dcaf34c86df96c54287354a1 Mon Sep 17 00:00:00 2001 From: Incoming Date: Wed, 4 May 2016 12:14:30 -0400 Subject: [PATCH] clients aren't datums so I'm forced into this slightly scummy situation. If at some point in the future byond makes clients datums this will need to be reverted. --- code/modules/client/client defines.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/client/client defines.dm b/code/modules/client/client defines.dm index bb3889ced3e..78b19cb7198 100644 --- a/code/modules/client/client defines.dm +++ b/code/modules/client/client defines.dm @@ -49,4 +49,5 @@ //datum that controls the displaying and hiding of tooltips var/datum/tooltip/tooltips - + //Used for var edit flagging, also defined in datums (clients are not a child of datums for some reason) + var/var_edited = 0 \ No newline at end of file