[LuaNetworkVariables] rename classes

This commit is contained in:
NotAKidoS 2025-05-08 17:15:52 -05:00
parent 8b34359d1b
commit 0a01534aa4
12 changed files with 122 additions and 51 deletions

View file

@ -1,7 +1,7 @@
using ABI_RC.Systems.ModNetwork;
using MoonSharp.Interpreter;
namespace NAK.LuaNetVars;
namespace NAK.LuaNetworkVariables;
public partial class LuaNetVarController
{
@ -24,7 +24,7 @@ public partial class LuaNetVarController
case DataType.Nil:
return DynValue.Nil;
default:
LuaNetVarsMod.Logger.Error($"Unsupported data type received: {dataType}");
LuaNetworkVariablesMod.Logger.Error($"Unsupported data type received: {dataType}");
return DynValue.Nil;
}
}
@ -49,7 +49,7 @@ public partial class LuaNetVarController
msg.Write((byte)DataType.Nil);
break;
default:
LuaNetVarsMod.Logger.Error($"Unsupported DynValue type: {value.Type}");
LuaNetworkVariablesMod.Logger.Error($"Unsupported DynValue type: {value.Type}");
msg.Write((byte)DataType.Nil);
break;
}