- Fix incorrect function call for novice network

- Fix keybind handler being obsolete
This commit is contained in:
Infi
2025-09-11 01:30:07 +02:00
parent 8c4410e75c
commit efdf69f782
4 changed files with 13 additions and 14 deletions
+1 -3
View File
@@ -10,9 +10,7 @@ internal sealed unsafe class Context
internal static void InviteToNoviceNetwork(string name, ushort world)
{
// can specify content id if we have it, but there's no need
fixed (byte* namePtr = name.ToTerminatedBytes()) {
InfoProxyNoviceNetwork.Instance()->InviteToNoviceNetwork(0, world, namePtr);
}
InfoProxyNoviceNetwork.Instance()->InviteToNoviceNetwork(0, 0, world, name.ToTerminatedBytes());
}
internal static void TryOn(uint itemId, byte stainId)