Skip to content

Commit

Permalink
1.20.1
Browse files Browse the repository at this point in the history
6.3.2

Fix potential Turkish OS Language issue
  • Loading branch information
xanthian committed Nov 23, 2023
1 parent 1203910 commit a75b145
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ loader_version=0.14.24
#Fabric api
fabric_version=0.90.7+1.20.1
# Mod Properties
mod_version=6.3.1
mod_version=6.3.2
maven_group=xanthian
archives_base_name=variantcraftingtables
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static void registerTables() {
}

private static void registerCraftingTableBlock(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
VANILLA_CRAFTING_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
AA_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
LDBP_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
BA_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
BW_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
BLS_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
DAD_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
EE_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
MC_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
NS_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
PROM_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public static void register05Tables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
RU_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
SP_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
TR_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void registerTables() {
}

private static Block register(String name, Block block) {
Identifier identifier = new Identifier(Initialise.MOD_ID, name.toLowerCase());
Identifier identifier = new Identifier(Initialise.MOD_ID, name);
Registry.register(Registries.BLOCK, identifier, block);
LDV_TABLES.put(identifier, block);
Registry.register(Registries.ITEM, identifier, new BlockItem(block, new FabricItemSettings()));
Expand Down

0 comments on commit a75b145

Please sign in to comment.