Skip to content

Commit

Permalink
Fix small oversight
Browse files Browse the repository at this point in the history
  • Loading branch information
FireInstall committed Dec 3, 2023
1 parent 8209e35 commit b9229bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}
// Suppiled by Jenkins
ext.majorVersion = 2
ext.minorVersion = 1
ext.minorVersion = 2
ext.minecraftVersion = "1.20.1"

ext.buildNumber = System.env.BUILD_NUMBER == null ? "x" : "build" + "$System.env.BUILD_NUMBER"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static AccessType getAccessTypeFromComp(@NotNull Component line) {
return AccessType.DISPLAY;
} else if (manager.isSignComp(line, MessageManager.LangPath.SUPPLY_SIGN)) {
return AccessType.SUPPLY;
} else if (manager.isLegacySignComp(line, MessageManager.LangPath.PRIVATE_SIGN)) {
} else if (manager.isLegacySignComp(line, MessageManager.LangPath.LEGACY_PRIVATE_SIGN)) {
return AccessType.PRIVATE;
} else {
return null;
Expand Down

0 comments on commit b9229bf

Please sign in to comment.