CommandHelper icon indicating copy to clipboard operation
CommandHelper copied to clipboard

Rapid scripting and command aliases for Minecraft owners

Results 81 CommandHelper issues
Sort by recently updated
recently updated
newest added

This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to fix one or more vulnerable packages in the `maven` dependencies of...

I have a custom /warp command that reads the "warps file" (yaml). I've used it for literally years (2015ish) and today it randomly threw an EOFException when trying to read...

bug

CommandHelper seems to not support EntityTag for ItemStacks, resulting in that information being lost when updating the inventory using: ``` set_pinv(pinv()) ``` I guess this is similar to #1343 (BlockStateTag)...

bug

CommandHelper seems to retrieve default BlockState values for unspecified states when at least one state is specified, and enforces them after a `set_pinv(pinv())`. Tested on: > CommandHelper-3.3.5-b309 > Purpur-1.19.3-b1895 ___...

bug

Allows users to see exceptions from scripts that were executed through an extension associated with `mscript.exe`. Points of interest: - File option defaults to false, maintaining current behavior. - Compile...

https://hub.spigotmc.org/javadocs/spigot/org/bukkit/event/inventory/InventoryPickupItemEvent.html https://hub.spigotmc.org/javadocs/spigot/org/bukkit/event/inventory/InventoryMoveItemEvent.html

feature request

These should all be reviewed, and scrubbed for sensitive info.

bug

A `nocatch` block is a block which may throw an exception, which is ignored (except if scream-errors is on.) ```java nocatch { _codeThatThrowsAnException(); } ``` is compiled to ```java try...

feature request
good first issue

- Fix semicolons not getting added to self statements where placement was intended. - Add documentation. While this fixes the intended behavior of the `addSelfStatements` method, two unit tests are...

When in strict mode, missing semicolons now cause a compile error.