Merge branch 'feature/plugin-api' of github.com:sylvessa/MinecraftConsoles into feature/plugin-api

This commit is contained in:
sylvessa 2026-05-06 17:37:05 -05:00
commit 8e66b2c19e
13 changed files with 570 additions and 5 deletions

View file

@ -190,6 +190,19 @@ public static partial class FourKitHost
}
}
[UnmanagedCallersOnly]
public static void FireSchedulerCallback(int currentTick) {
try
{
FourKit.getScheduler().update(currentTick);
}
catch (Exception ex)
{
ServerLog.Error("fourkit", $"FireSchedulerCallback error: {ex}");
return;
}
}
[UnmanagedCallersOnly]
public static int FirePlayerMove(int entityId,
double fromX, double fromY, double fromZ,