Skip to content

Commit

Permalink
1.7.4: Yet another important bug fix (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
Detlev1 authored Aug 17, 2024
1 parent 5e86d2c commit 51fec08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "dev.meyi.bazaarnotifier"
version = "1.7.3"
version = "1.7.4"
val mod_id = "bazaarnotifier"

java {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/dev/meyi/bn/BazaarNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class BazaarNotifier {

public static final String MODID = "BazaarNotifier";
public static final String VERSION = "1.7.3";
public static final String VERSION = "1.7.4";
public static final String prefix =
EnumChatFormatting.GOLD + "[" + EnumChatFormatting.YELLOW + "BN" + EnumChatFormatting.GOLD
+ "] " + EnumChatFormatting.RESET;
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/dev/meyi/bn/handlers/ChestTickHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public static void updateBazaarOrders(IInventory chest) {
for (ItemStack item : items) {
if (item != null && Item.itemRegistry.getIDForObject(item.getItem()) != 160 // Glass
&& Item.itemRegistry.getIDForObject(item.getItem()) != 102 // Glass
&& Item.itemRegistry.getIDForObject(item.getItem()) != 262) { // Arrow
&& Item.itemRegistry.getIDForObject(item.getItem()) != 262 // Arrow
&& Item.itemRegistry.getIDForObject(item.getItem()) != 154 ) { //Hopper
List<String> lore = Utils.getLoreFromItemStack(item);

Pattern p2 = Pattern.compile("(BUY|SELL):? (.*)");
Expand Down

0 comments on commit 51fec08

Please sign in to comment.