Skip to content

Commit

Permalink
[ci skip] Release version 3.1.5 with new features and bug fixes
Browse files Browse the repository at this point in the history
Update changelog and version number to 3.1.5. Added a new /trash command, a teleport cooldown bypass permission, and fixed a critical spawn bug that caused server inaccessibility.
  • Loading branch information
NonSwag committed Jan 8, 2025
1 parent 263abf2 commit acc1ffa
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
== 3.1.5

- **Added /trash command**: Added a simple /trash command
- **Add cooldown bypass permission**: Added permission `tweaks.teleport.cooldown.bypass` to bypass teleport cooldowns
- **Fixed spawn bug**: Invalid spawn worlds will no longer cause errors and make the server inaccessible
== v3.1.4

- **Fix /broadcast command**: Fixed /broadcast command to be usable by non-player command senders
Expand Down
37 changes: 19 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,24 +97,25 @@ The perm-pack to grant all permissions: `tweaks.commands.item`

## Player commands

| Command | Aliases | Description | Permission | Argument | Permission |
|-----------------------------------------------|--------------------------|----------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|------------|
| `/back` | | go back to your last position | tweaks.command.back | | |
| `/enderchest [<player>]` | `/ec` | open your own or someone else's enderchest | tweaks.command.enderchest<br/>permits to use the command /enderchest<br/>to allow changes inside of an enderchest, grant<ul><li>tweaks.command.enderchest.edit</ul> | player | *.others |
| `/feed [<players>]` | | satisfy your own or someone else's hunger | tweaks.command.feed | player | *.others |
| `/fly [<players>]` | `/flight` | toggle your own or someone else's fly state | tweaks.command.fly | player | *.others |
| `/gamemode [gamemode] [<player>]` | `/gm` | change your own or someone else's gamemode | tweaks.command.gamemode<br/>permits to use the command /gamemode | player | *.others |
| `/god [<targets>]` | `/invincible` | make you or someone else invulnerable | tweaks.command.god | player | *.others |
| `/hat` | | equip your item as a hat | tweaks.command.hat | | |
| `/heal [<targets>]` | | heal yourself or someone else | tweaks.command.heal | player | *.others |
| `/inventory [<player>]` | `/inv`<br/>`/invsee` | open your own or someone else's inventory | tweaks.command.inventory<br/>permits to use the command /inventory<br/>to allow changes inside of an inventory, grant<ul><li>tweaks.command.inventory.edit</ul> | | |
| `/offline-teleport <player> [<target>]` | `/offline-tp`<br/>`/tpo` | teleport offline-players to others or you to them | tweaks.command.offline-tp | | |
| `/ping [<player>]` | `/latency`<br/>`/ms` | see your own or someone else's latency | tweaks.command.ping | player | *.others |
| `/seen <player>` | `/find` | gives you information about a player | tweaks.command.seen | | |
| `/speed <speed> [fly/sneak/walk] [<targets>]` | | Change your own or others fly, sneak or walk speed | tweaks.command.speed | targets | *.others |
| `/speed reset [fly/sneak/walk] [<targets>]` | | Reset your own or others fly, sneak or walk speed | tweaks.command.speed | targets | *.others |
| `/suicide` | | take your own life | tweaks.command.suicide | | |
| `/vanish (player)` | `/v`<br/>`/invisible` | hide yourself or someone else from others | tweaks.command.vanish | | |
| Command | Aliases | Description | Permission | Argument | Permission |
|-----------------------------------------------|---------------------------|----------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|------------|
| `/back` | | go back to your last position | tweaks.command.back | | |
| `/enderchest [<player>]` | `/ec` | open your own or someone else's enderchest | tweaks.command.enderchest<br/>permits to use the command /enderchest<br/>to allow changes inside of an enderchest, grant<ul><li>tweaks.command.enderchest.edit</ul> | player | *.others |
| `/feed [<players>]` | | satisfy your own or someone else's hunger | tweaks.command.feed | player | *.others |
| `/fly [<players>]` | `/flight` | toggle your own or someone else's fly state | tweaks.command.fly | player | *.others |
| `/gamemode [gamemode] [<player>]` | `/gm` | change your own or someone else's gamemode | tweaks.command.gamemode<br/>permits to use the command /gamemode | player | *.others |
| `/god [<targets>]` | `/invincible` | make you or someone else invulnerable | tweaks.command.god | player | *.others |
| `/hat` | | equip your item as a hat | tweaks.command.hat | | |
| `/trash` | `/dispose`<br/>`/garbage` | dispose of your unwanted items | tweaks.command.trash | | |
| `/heal [<targets>]` | | heal yourself or someone else | tweaks.command.heal | player | *.others |
| `/inventory [<player>]` | `/inv`<br/>`/invsee` | open your own or someone else's inventory | tweaks.command.inventory<br/>permits to use the command /inventory<br/>to allow changes inside of an inventory, grant<ul><li>tweaks.command.inventory.edit</ul> | | |
| `/offline-teleport <player> [<target>]` | `/offline-tp`<br/>`/tpo` | teleport offline-players to others or you to them | tweaks.command.offline-tp | | |
| `/ping [<player>]` | `/latency`<br/>`/ms` | see your own or someone else's latency | tweaks.command.ping | player | *.others |
| `/seen <player>` | `/find` | gives you information about a player | tweaks.command.seen | | |
| `/speed <speed> [fly/sneak/walk] [<targets>]` | | Change your own or others fly, sneak or walk speed | tweaks.command.speed | targets | *.others |
| `/speed reset [fly/sneak/walk] [<targets>]` | | Reset your own or others fly, sneak or walk speed | tweaks.command.speed | targets | *.others |
| `/suicide` | | take your own life | tweaks.command.suicide | | |
| `/vanish (player)` | `/v`<br/>`/invisible` | hide yourself or someone else from others | tweaks.command.vanish | | |

The perm-pack to grant all permissions: `tweaks.commands.player`

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "net.thenextlvl.tweaks"
version = "3.1.4"
version = "3.1.5"

java {
toolchain.languageVersion = JavaLanguageVersion.of(21)
Expand Down

0 comments on commit acc1ffa

Please sign in to comment.