mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-04 23:39:22 +00:00
[LuaNetworkVariables] rename classes
This commit is contained in:
parent
8b34359d1b
commit
0a01534aa4
12 changed files with 122 additions and 51 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue