Skip to content

Commit

Permalink
Merge pull request #29 from udu3324/master
Browse files Browse the repository at this point in the history
Hotfix ToggleSpecificAds
  • Loading branch information
udu3324 authored May 25, 2024
2 parents 89b3a28 + ef80803 commit ebbdc3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ org.gradle.parallel=true
loader_version=0.15.3

# Mod Properties
mod_version = 1.6.3
mod_version = 1.6.4
maven_group = com.udu3324
archives_base_name = poinpow

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static boolean checkRank(String chat) {
return true;
} else if (rank.contains("[PATRON]") && patron) {
return true;
} else return defaultRank;
} else return !(rank.contains("VIP") || rank.contains("PRO") || rank.contains("LEGEND") || rank.contains("PATRON")) && defaultRank;
}

public static int toggle(FabricClientCommandSource source, String rank) {
Expand Down

0 comments on commit ebbdc3f

Please sign in to comment.