Skip to content

Commit

Permalink
build: updated to MC 1.21.1, gradle 8.8, arch loom 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Aug 14, 2024
1 parent 6986026 commit 6523f17
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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.6-SNAPSHOT" apply false
id "dev.architectury.loom" version "1.7-SNAPSHOT" apply false
id "me.modmuss50.mod-publish-plugin" version "0.5.1"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Team getTeam(CommandSourceStack source) throws CommandSyntaxException {
@Override
public TeamArgumentProvider parse(StringReader reader) throws CommandSyntaxException {
if (reader.canRead() && reader.peek() == '@') {
EntitySelector selector = new EntitySelectorParser(reader).parse();
EntitySelector selector = new EntitySelectorParser(reader, true).parse();

if (selector.includesEntities()) {
throw EntityArgument.ERROR_ONLY_PLAYERS_ALLOWED.create();
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ maven_group=dev.ftb.mods
readable_name=FTB Teams
mod_author=FTB Team

mod_version=2100.1.1
minecraft_version=1.21
mod_version=2101.1.0
minecraft_version=1.21.1

# Deps
#forge_version=50.0.9
neoforge_loader_version=4
neoforge_version=21.0.160
neoforge_version_range=[21.0.143,)
neoforge_version=21.1.9
neoforge_version_range=[21.1.0,)
fabric_loader_version=0.15.11
fabric_api_version=0.100.8+1.21
fabric_api_version_range=>=0.100.1+1.21
architectury_api_version=13.0.1

ftb_library_version=2100.1.5-SNAPSHOT
ftb_library_version=2101.1.0-SNAPSHOT

curseforge_id_forge=404468
curseforge_id_fabric=438497
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip

0 comments on commit 6523f17

Please sign in to comment.