This commit is contained in:
nattthebear 2017-07-16 07:38:52 -04:00
parent 60b9825f64
commit abc894da93
1 changed files with 9 additions and 0 deletions

View File

@ -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;
}