Skip to content

Commit

Permalink
support resource pack lang
Browse files Browse the repository at this point in the history
  • Loading branch information
zimzaza4 committed Dec 22, 2022
1 parent 27dec12 commit 103f373
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Binary file modified MBR.mcpack.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

public class AutomaticBow extends CustomBowBase {
public AutomaticBow() {
super("morebows:automatic_bow", "连发弓", "automatic_bow");
super("morebows:automatic_bow", null, "automatic_bow");
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/zimzaza4/morebows/item/bows/IcyBow.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public class IcyBow extends CustomBowBase {
public IcyBow() {
super("morebows:icy_bow", "§b冰弓", "icy_bow");
super("morebows:icy_bow", null, "icy_bow");
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/zimzaza4/morebows/item/bows/TNTBow.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

public class TNTBow extends CustomBowBase {
public TNTBow() {
super("morebows:tnt_bow", "TNT弓", "tnt_bow");
super("morebows:tnt_bow", null, "tnt_bow");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class TeleportBow extends CustomBowBase {
public TeleportBow() {
super("morebows:teleport_bow", "传送弓", "teleport_bow");
super("morebows:teleport_bow", null, "teleport_bow");
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public class ThunderBow extends CustomBowBase {
public ThunderBow() {
super("morebows:thunder_bow", "§e闪电弓", "thunder_bow");
super("morebows:thunder_bow", null, "thunder_bow");
}

@Override
Expand Down

0 comments on commit 103f373

Please sign in to comment.