Jump to content

[1.16.3] [SOLVED] setBoundingBox() method not working?


jstN0body

Recommended Posts

Maybe I'm just going crazy and doing something completely wrong, but I have a simple command set up that should shrink the hitbox of the player by a little bit:

@Override
public int run(CommandContext<CommandSource> context) throws CommandSyntaxException {
   ServerPlayerEntity player = context.getSource().asPlayer();
   player.setBoundingBox(player.getBoundingBox().shrink(1));
   player.sendStatusMessage(new TranslationTextComponent("Size updated."), true);
   return 0;
}

This is the code that should be executed when the command is run. The status message is sent and no errors are thrown, but the hitbox remains the same. Anyone know what's going on?

Edited by jstN0body
issue solved
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.