diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 675cc74..b26c0d1 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -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 diff --git a/README.md b/README.md index 2a32626..b62fc25 100644 --- a/README.md +++ b/README.md @@ -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 []` | `/ec` | open your own or someone else's enderchest | tweaks.command.enderchest
permits to use the command /enderchest
to allow changes inside of an enderchest, grant | player | *.others | -| `/feed []` | | satisfy your own or someone else's hunger | tweaks.command.feed | player | *.others | -| `/fly []` | `/flight` | toggle your own or someone else's fly state | tweaks.command.fly | player | *.others | -| `/gamemode [gamemode] []` | `/gm` | change your own or someone else's gamemode | tweaks.command.gamemode
permits to use the command /gamemode | player | *.others | -| `/god []` | `/invincible` | make you or someone else invulnerable | tweaks.command.god | player | *.others | -| `/hat` | | equip your item as a hat | tweaks.command.hat | | | -| `/heal []` | | heal yourself or someone else | tweaks.command.heal | player | *.others | -| `/inventory []` | `/inv`
`/invsee` | open your own or someone else's inventory | tweaks.command.inventory
permits to use the command /inventory
to allow changes inside of an inventory, grant
  • tweaks.command.inventory.edit
| | | -| `/offline-teleport []` | `/offline-tp`
`/tpo` | teleport offline-players to others or you to them | tweaks.command.offline-tp | | | -| `/ping []` | `/latency`
`/ms` | see your own or someone else's latency | tweaks.command.ping | player | *.others | -| `/seen ` | `/find` | gives you information about a player | tweaks.command.seen | | | -| `/speed [fly/sneak/walk] []` | | Change your own or others fly, sneak or walk speed | tweaks.command.speed | targets | *.others | -| `/speed reset [fly/sneak/walk] []` | | 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`
`/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 []` | `/ec` | open your own or someone else's enderchest | tweaks.command.enderchest
permits to use the command /enderchest
to allow changes inside of an enderchest, grant
  • tweaks.command.enderchest.edit
| player | *.others | +| `/feed []` | | satisfy your own or someone else's hunger | tweaks.command.feed | player | *.others | +| `/fly []` | `/flight` | toggle your own or someone else's fly state | tweaks.command.fly | player | *.others | +| `/gamemode [gamemode] []` | `/gm` | change your own or someone else's gamemode | tweaks.command.gamemode
permits to use the command /gamemode | player | *.others | +| `/god []` | `/invincible` | make you or someone else invulnerable | tweaks.command.god | player | *.others | +| `/hat` | | equip your item as a hat | tweaks.command.hat | | | +| `/trash` | `/dispose`
`/garbage` | dispose of your unwanted items | tweaks.command.trash | | | +| `/heal []` | | heal yourself or someone else | tweaks.command.heal | player | *.others | +| `/inventory []` | `/inv`
`/invsee` | open your own or someone else's inventory | tweaks.command.inventory
permits to use the command /inventory
to allow changes inside of an inventory, grant
  • tweaks.command.inventory.edit
| | | +| `/offline-teleport []` | `/offline-tp`
`/tpo` | teleport offline-players to others or you to them | tweaks.command.offline-tp | | | +| `/ping []` | `/latency`
`/ms` | see your own or someone else's latency | tweaks.command.ping | player | *.others | +| `/seen ` | `/find` | gives you information about a player | tweaks.command.seen | | | +| `/speed [fly/sneak/walk] []` | | Change your own or others fly, sneak or walk speed | tweaks.command.speed | targets | *.others | +| `/speed reset [fly/sneak/walk] []` | | 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`
`/invisible` | hide yourself or someone else from others | tweaks.command.vanish | | | The perm-pack to grant all permissions: `tweaks.commands.player` diff --git a/build.gradle.kts b/build.gradle.kts index 54df861..25a9c43 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "net.thenextlvl.tweaks" -version = "3.1.4" +version = "3.1.5" java { toolchain.languageVersion = JavaLanguageVersion.of(21)