Jump to content

Player abilities [1.17.1] mayfly!


X_ZombieSlayer_X

Recommended Posts

Hello, my fly command is not working. Not sure why it is not working. I am setting the player.getAbilities().mayfly to true. It even prints out that is is true!

@Override
	public void command() {
		command = Commands.literal("fly").executes(
				(commandContext) -> {return fly(commandContext);}
				);
	}
	
	private int fly(CommandContext<CommandSourceStack> commandContext) throws CommandSyntaxException {
		
		Player player = commandContext.getSource().getPlayerOrException();
		player.getAbilities().mayfly = !player.getAbilities().mayfly;
		commandContext.getSource().sendSuccess(Msg.buildMessage("Fly set to : "+player.getAbilities().mayfly), false);
		
		return 1;
	}

Any reason why it would not be working?

Link to comment
Share on other sites

8 minutes ago, diesieben07 said:

The event currently no longer exists. What is your use case for it?

I have a chunkclaiming system that allows users to claim chunks so that they can only build in them. It works fine but I just want to add a message for when players enter their claimed chunks. Maybe I could do some type of movement event and cross reference it with claimed chunks?

Edited by X_ZombieSlayer_X
Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.