pack: correct Numismatics coin IDs (5 denominations, not 4)
The 0.18.0 economy_policy.js named 'numismatics:sundial' which doesn't exist -- the real registry IDs are spur, bevel, cog, crown, sun. The KubeJS warning surfaced this at startup: Failed to read ingredient from numismatics:sundial: Item with ID numismatics:sundial does not exist! Updates both economy_policy.js (recipe removal) and jei_hides.js (JEI hide) to use the correct 5-denomination list. Bumps to 0.18.1.
This commit is contained in:
@@ -37,7 +37,8 @@ COLORS.forEach(c => {
|
|||||||
const COIN_ITEMS = [
|
const COIN_ITEMS = [
|
||||||
'numismatics:spur',
|
'numismatics:spur',
|
||||||
'numismatics:bevel',
|
'numismatics:bevel',
|
||||||
'numismatics:sundial',
|
'numismatics:cog',
|
||||||
|
'numismatics:crown',
|
||||||
'numismatics:sun',
|
'numismatics:sun',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -14,11 +14,13 @@ ServerEvents.recipes(event => {
|
|||||||
// recovery happens via OP /give or future bank vendor.
|
// recovery happens via OP /give or future bank vendor.
|
||||||
event.remove({ mod: 'waystones' });
|
event.remove({ mod: 'waystones' });
|
||||||
|
|
||||||
// Block coin manufacturing only -- 4 denominations.
|
// Block coin manufacturing only -- 5 denominations.
|
||||||
|
// Real registry IDs: spur, bevel, cog, crown, sun.
|
||||||
[
|
[
|
||||||
'numismatics:spur',
|
'numismatics:spur',
|
||||||
'numismatics:bevel',
|
'numismatics:bevel',
|
||||||
'numismatics:sundial',
|
'numismatics:cog',
|
||||||
|
'numismatics:crown',
|
||||||
'numismatics:sun',
|
'numismatics:sun',
|
||||||
].forEach(coin => event.remove({ output: coin }));
|
].forEach(coin => event.remove({ output: coin }));
|
||||||
});
|
});
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "Brass-and-Sigil pack.lock.json - generated, do not edit by hand unless you know what you are doing",
|
"$schema": "Brass-and-Sigil pack.lock.json - generated, do not edit by hand unless you know what you are doing",
|
||||||
"name": "Brass and Sigil",
|
"name": "Brass and Sigil",
|
||||||
"version": "0.18.0",
|
"version": "0.18.1",
|
||||||
"minecraft": "1.21.1",
|
"minecraft": "1.21.1",
|
||||||
"loader": {
|
"loader": {
|
||||||
"type": "neoforge",
|
"type": "neoforge",
|
||||||
|
|||||||
Reference in New Issue
Block a user