feat: add ready packet

This commit is contained in:
ForestOfLight
2026-05-27 05:10:44 -07:00
Unverified
parent cb78fb7b9a
commit e0e12f5dd0
5 changed files with 708 additions and 0 deletions
@@ -0,0 +1,6 @@
import { system } from "@minecraft/server";
import { Ready } from "./Ready.ipc";
system.runTimeout(() => {
IPC.send(`constructExtension:ready`, Ready, void 0);
}, 1);