From cd81fbb70af0c2648e99c9ec80fd820025c5ea82 Mon Sep 17 00:00:00 2001 From: themodernhakr Date: Wed, 12 Mar 2025 01:22:16 -0500 Subject: [PATCH] Improve control of imports `import` is really just an alias for copy/paste. Ensure import order reflects intended execution order. --- main.jmc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.jmc b/main.jmc index 4044763..8700346 100644 --- a/main.jmc +++ b/main.jmc @@ -1,3 +1,6 @@ -import "src/*"; +import "src/props.jmc"; +import "src/logger.jmc"; +import "src/commands.jmc"; +import "src/magic/*"; function __tick__() {}