Skip to content

Commit

Permalink
chore: fixes and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Mar 2, 2024
1 parent b40dbbb commit 077f473
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 84.0.1

### Fixed

- Restricted the `/toggledownfall` command to `gamemasters` (Minecrafts naming, not mine.)

## 84.0.0

### updated to 1.20.4
### updated to 1.20.4
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.4-SNAPSHOT" apply false
id "dev.architectury.loom" version "1.5-SNAPSHOT" apply false
id "me.modmuss50.mod-publish-plugin" version "0.4.5"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class TKCommand {
public static void register(CommandDispatcher<CommandSourceStack> dispatcher, CommandBuildContext context, Commands.CommandSelection selection) {
dispatcher.register(Commands.literal("toggledownfall")
.requires(cs -> Commands.LEVEL_GAMEMASTERS)
.requires(cs -> cs.hasPermission(Commands.LEVEL_GAMEMASTERS))
.executes(c -> {
ServerLevel level = c.getSource()
.getPlayerOrException()
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ minecraft_version=1.20.4
enabled_platforms=fabric,forge,neoforge

archives_base_name=ToolKit
mod_version=84.0.0
mod_version=84.0.1
maven_group=com.sunekaer.mods

architectury_version=11.0.11

fabric_loader_version=0.15.4
fabric_api_version=0.91.3+1.20.4
fabric_loader_version=0.15.7
fabric_api_version=0.96.4+1.20.4

forge_version=49.0.19
forge_version=49.0.31
forge_gradle_version=6.0.20

neoforge_version=20.4.108-beta
neoforge_version=20.4.190
neoforge_gradle_version=7.0.83

curseforge_id=324888
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 077f473

Please sign in to comment.