Posted August 21, 20205 yr How to create a structure by commands in the game? I did like this. public class summonCommand implements Command<CommandSource> { public static structureCommand instance = new structureCommand(); @Override public int run(CommandContext<CommandSource> context) throws CommandSyntaxException { StringTextComponent stc = new StringTextComponent(""); context.getSource().sendFeedback(stc, false); return 0; } } What shoud I do next...
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.