Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion behavior_pack/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Con JS Terminal",
"description": "Terminal with JS input by ConMaster2112",
"uuid": "4997eb94-8968-4158-864b-74f1999192f7",
"version": "0.1.0-alpha",
"version": "0.1.1-alpha",
"min_engine_version": [1, 20, 0]
},
"modules": [
Expand Down
2 changes: 1 addition & 1 deletion behavior_pack/scripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ world.beforeEvents.chatSend.subscribe(async (ev) => {
ev.cancel = true;
await null;
const out = await TerminalInput(sender, message.substring(1));
sender.sendMessage(sender, out.formatView);
sender.sendMessage(out.formatView);
}
});