The Art of Mining: Coffee Vol.3 not work

Kargul

New member
Code:
I had a cup of coffee, according to the description I should be collecting 10% more ore. 
During the test digging of the coal. Coal Block: 80 Coal, 22 Stone. After drinking coffee, the same thing.




 
Have you confirmed that you unlocked the perk book and not remembering a previous game where you had?

 
Code:
I had mining volume 3 book, read it. I have unlocked in the perks (Illuminated inscription). There is no 10% bonus.
Code:
Yes! On the new save in creative mode (to speed up the acquisition of the book) it is the same.
 
**************************************

tested 2 separate maps in a19 and a20

the books say 10% harvest increase on all ores (not the resource boulders (those on top of ground) ores are under ground)

i find that this is working as intended for a19 and a20.

this is based on non modded game, no mods on the pick axe and fresh unleveled character.

 

:)
QA Tester-unholyjoe
***************************************

A19.6_2021-10-27_11-09-35.jpg

A19.6_2021-10-27_11-12-35.jpg

A19.6_2021-10-27_11-14-53.jpg

 
Last edited by a moderator:
I did further tests. In fact, it works but - it doesn't work with a stone axe.
You need an iron pickaxe or a steel pickaxe for a bonus.
There could be information that it will not work with a stone ax! Thank you for taking the time to do the test

 
***************************************
sometime today i will test this with a ql1 stone axe to see if it is affected or not as well.

ok confirmed effects do not apply to stone axe i have submitted a bug report on it for a20 fix (hopefully).

:)
QA Tester-unholyjoe
***************************************

 
Last edited by a moderator:
FYI....If you want to fix it, the issue is a tag missing from the items file

From the Progression file for this book

               <perk name="perkArtOfMiningCoffee" parent="skillArtOfMining" max_level="1" base_skill_point_cost="0" name_key="bookArtOfMiningCoffee" desc_key="perkArtOfMiningCoffeeDesc" long_desc_key="perkArtOfMiningCoffeeLongDesc">

                              <effect_group>

                                             <requirement name="HasBuff" buff="buffCoffee"/>

                                             <requirement name="ItemHasTags" tags="miningTool"/>


The iron pickaxe (from items.xml)

<item name="meleeToolPickT1IronPickaxe">

               <property name="Tags" value="melee,grunting,medium,tool,longShaft,attStrength,perkMiner69r,perkMotherLode,miningTool,canHaveCosmetic"/>


The stone axe (from items.xml)

<item name="meleeToolRepairT0StoneAxe">

               <property name="Tags" value="axe,melee,light,tool,longShaft,attStrength,perkMiner69r,perkMotherLode,perkTheHuntsman,canHaveCosmetic"/>


To make it work, you just need to add miningTool in the property name="Tags" field like it has on the iron pickaxe.

Or maybe someone could do a simple quick modlet that will add it for you (I am at work so I don't have access to Notepad++ and the ability to verify it works prior to releasing it).

 
Back
Top