From abc894da9377d8aaf3608a727f4bbf71774d462e Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 16 Jul 2017 07:38:52 -0400 Subject: [PATCH] meh --- BizHawk.Client.Common/lua/EmuLuaLibrary.UserData.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.UserData.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.UserData.cs index 2cfa50814e..3e280ace40 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.UserData.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.UserData.cs @@ -21,6 +21,15 @@ namespace BizHawk.Client.EmuHawk [LuaMethod("set", "adds or updates the data with the given key with the given value")] public void Set(string name, object value) { + if (value != null) + { + var t = value.GetType(); + if (!t.IsPrimitive && t != typeof(string)) + { + throw new InvalidOperationException("Invalid type for userdata"); + } + } + Global.UserBag[name] = value; }