Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Added command
Browse files Browse the repository at this point in the history
  • Loading branch information
TiredGameDev committed May 23, 2024
1 parent b3993f2 commit 0c0b230
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/commands-folder/bacon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { CommandBuilder } from '../commandBuilder';
import {world} from "@minecraft/server";

export default function lore() {
new CommandBuilder("bacon")
.desc("bacondev")
.category("b00b s3x")
.callback(({msg,args,theme,response})=>{
world.sendMessage("As a wise bacondevsb once said... b00b s3x...");
})
.register();
}

0 comments on commit 0c0b230

Please sign in to comment.