remove unused imports & stop mixing returns with and without values

This commit is contained in:
ForestOfLight
2026-02-11 14:02:06 -08:00
Unverified
parent 68c9ad5ef2
commit 2a83907162
5 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ world.beforeEvents.playerLeave.subscribe((event) => {
return;
Builders.onLeave(event.player.id);
});
world.afterEvents.worldLoad.subscribe((event) => {
world.afterEvents.worldLoad.subscribe(() => {
for (const player of world.getAllPlayers()) {
if (!player)
continue;