Skip to content

Commit

Permalink
update to 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
CodedSakura committed Dec 10, 2023
1 parent cd6e2b2 commit 51ebc68
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.2.2

* Update to support 1.20.4

# 2.2.1

* Update to support 1.20.2
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.1-SNAPSHOT'
id 'fabric-loom' version '1.4-SNAPSHOT'
id 'maven-publish'
id "com.modrinth.minotaur" version "2.+"
}
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
org.gradle.jvmargs=-Xmx1G

# Mod Properties
mod_version=2.2.1
mod_version=2.2.2
maven_group=dev.codedsakura.blossom
mod_slug=BlossomTPA
archives_base_name=blossom-tpa
supported_versions=1.20;1.20.1;1.20.2
supported_versions=1.20.4

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.2
minecraft_version=1.20.4
yarn_mappings=build.1
loader_version=0.14.22
loader_version=0.15.1

# Dependencies
blossomlib_version=2.5.4
blossomlib_version=2.5.6
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-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
6 changes: 3 additions & 3 deletions src/main/java/dev/codedsakura/blossom/tpa/TpaRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ Object[] toArgs() {
initiator,
receiver,
new CommandTextBuilder("/tpacancel")
.setCommandRun("/tpacancel " + receiver.getEntityName())
.setCommandRun("/tpacancel " + receiver.getGameProfile().getName())
.setHoverShowRun(),
new CommandTextBuilder("/tpaaccept")
.setCommandRun("/tpaaccept " + initiator.getEntityName())
.setCommandRun("/tpaaccept " + initiator.getGameProfile().getName())
.setHoverShowRun(),
new CommandTextBuilder("/tpadeny")
.setCommandRun("/tpadeny " + initiator.getEntityName())
.setCommandRun("/tpadeny " + initiator.getGameProfile().getName())
.setHoverShowRun(),
};
}
Expand Down

0 comments on commit 51ebc68

Please sign in to comment.