Skip to content

Commit

Permalink
[2.0.0-dev12]修复配方名字大小写导致无法正确注册的bug,修复物品nbt无法正确读取数字类型nbt的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
YufiriaMazenta committed Jan 19, 2024
1 parent 2779787 commit c4ccab8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import java.text.SimpleDateFormat
version = "2.0.0-dev11"
version = "2.0.0-dev12"

plugins {
`java-library`
Expand Down Expand Up @@ -40,7 +40,7 @@ dependencies {
compileOnly("io.lumine:Mythic-Dist:5.3.5")
compileOnly("io.lumine:MythicLib-dist:1.6.2-SNAPSHOT")
compileOnly("net.Indyuce:MMOItems-API:6.9.5-SNAPSHOT")
implementation("com.crypticlib:CrypticLib:0.10.33")
implementation("com.crypticlib:CrypticLib:0.10.34")
}

group = "com.github.yufiriamazenta"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class RecipeGroupParser {

public RecipeGroupParser(String groupName, ConfigWrapper configWrapper) {
this.configWrapper = configWrapper;
this.groupName = groupName;
this.groupName = groupName.toLowerCase();
String globalTypeStr = configWrapper.config().getString(TYPE_KEY);
if (globalTypeStr != null)
this.globalType = RecipeType.getByName(globalTypeStr);
Expand Down

0 comments on commit c4ccab8

Please sign in to comment.