@rpg-engine/long-bow 0.3.68 → 0.3.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/long-bow.cjs.development.js +3 -1
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +3 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CraftBook/CraftBook.tsx +1 -1
- package/src/components/SkillsContainer.tsx +2 -0
package/dist/long-bow.esm.js
CHANGED
|
@@ -33376,7 +33376,7 @@ var CraftBook = function CraftBook(_ref) {
|
|
|
33376
33376
|
var getDropdownOptions = function getDropdownOptions() {
|
|
33377
33377
|
var options = [];
|
|
33378
33378
|
Object.keys(ItemSubType).forEach(function (key) {
|
|
33379
|
-
if (key === '
|
|
33379
|
+
if (key === 'DeadBody') {
|
|
33380
33380
|
return; // we can't craft crafting resouces...
|
|
33381
33381
|
}
|
|
33382
33382
|
|
|
@@ -35675,6 +35675,7 @@ var skillProps = {
|
|
|
35675
35675
|
fishing: 'foods/fish.png',
|
|
35676
35676
|
mining: 'crafting-resources/iron-ingot.png',
|
|
35677
35677
|
lumberjacking: 'crafting-resources/greater-wooden-log.png',
|
|
35678
|
+
blacksmithing: 'hammers/hammer.png',
|
|
35678
35679
|
cooking: 'foods/chickens-meat.png',
|
|
35679
35680
|
alchemy: 'potions/greater-mana-potion.png'
|
|
35680
35681
|
}
|
|
@@ -35697,6 +35698,7 @@ var skillNameMap = {
|
|
|
35697
35698
|
fishing: 'Fishing',
|
|
35698
35699
|
mining: 'Mining',
|
|
35699
35700
|
lumberjacking: 'Lumberjacking',
|
|
35701
|
+
blacksmithing: 'Blacksmithing',
|
|
35700
35702
|
cooking: 'Cooking',
|
|
35701
35703
|
alchemy: 'Alchemy'
|
|
35702
35704
|
};
|