diff --git a/2006Redone Server/data/logs/shopselling/irdb.txt b/2006Redone Server/data/logs/shopselling/irdb.txt index 6cfe3800..724da0a0 100644 --- a/2006Redone Server/data/logs/shopselling/irdb.txt +++ b/2006Redone Server/data/logs/shopselling/irdb.txt @@ -1,2 +1,23 @@ [2019/10/04] 10:46 irdb sold thread to store id: 24 for 2 coins [2019/10/04] 10:47 irdb sold bronze dagger to store id: 88 for 8 coins +[2019/10/04] 16:54 irdb sold bronze dagger to store id: 88 for 8 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:54 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins +[2019/10/04] 16:55 irdb sold bucket to store id: 88 for 0 coins diff --git a/2006Redone Server/src/redone/game/shops/ShopAssistant.java b/2006Redone Server/src/redone/game/shops/ShopAssistant.java index 5f1dbda1..91d03225 100644 --- a/2006Redone Server/src/redone/game/shops/ShopAssistant.java +++ b/2006Redone Server/src/redone/game/shops/ShopAssistant.java @@ -113,6 +113,7 @@ public class ShopAssistant { for (int i = 0; i < Constants.ITEM_LIMIT; i++) { if (ItemDefinitions.getDef()[i] != null) { ShopValue = ItemDefinitions.getDef()[ItemID].highAlch/3.0 *5.0 * sellingRatio; + ShopValue = ShopValue <= 0 ? 1 : ShopValue; //Don't let the value be 0 } } diff --git a/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$1.class b/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$1.class index 58b1f128..fb62855f 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$1.class and b/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$1.class differ diff --git a/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$2.class b/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$2.class index c88b3eb4..6c37c31b 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$2.class and b/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting$2.class differ diff --git a/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting.class b/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting.class index d9b68c58..e95a2de8 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting.class and b/CompiledServer/production/2006rebotted/redone/game/content/skills/fletching/LogCutting.class differ diff --git a/CompiledServer/production/2006rebotted/redone/game/shops/ShopAssistant.class b/CompiledServer/production/2006rebotted/redone/game/shops/ShopAssistant.class index 2f2629e9..84feeb03 100644 Binary files a/CompiledServer/production/2006rebotted/redone/game/shops/ShopAssistant.class and b/CompiledServer/production/2006rebotted/redone/game/shops/ShopAssistant.class differ