import { raw, tag } from "sandstone"; import { KRADLE_PARTICIPANT_TAG } from "./constants"; //set to true to enable test mode export const test_mode_enabled = false; //set the minecraft name of the tester player const tester_minecraft_name = ""; export const set_up_test_mode = () => { // 1. Tag the tester player if they're going to be participating tag(tester_minecraft_name).add(KRADLE_PARTICIPANT_TAG); // 2. Set the tester player's gamemode, e.g. survival raw(`gamemode survival ${tester_minecraft_name}`); // 3. Set the gamerule sendCommandFeedback to true raw("gamerule sendCommandFeedback true"); };