Skip to content

Commit

Permalink
Merge pull request #717 from YocyCraft/small-fixes
Browse files Browse the repository at this point in the history
Fix Dense Uraninite Ore energizing recipes and Runic Glass (Pane) tooltips
  • Loading branch information
djnifos authored Oct 11, 2024
2 parents e8e47b6 + 34534e0 commit 582a5e7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kubejs/client_scripts/tooltips.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ ItemEvents.modifyTooltips(allthemods => {
Text.of("§7Very rarely spawns between Y -44 and Y 42"),
Text.of("§cWill explode when you mine it!")
])
allthemods.add(/forbidden_arcanus:runic_/,[
allthemods.add(/forbidden_arcanus:runic_[sd]/,[
Text.of("§7Spawns at the bottom of the world up to Y 2"),
])
allthemods.add(['forbidden_arcanus:arcane_crystal_ore', 'forbidden_arcanus:deepslate_arcane_crystal_ore'],[
Expand Down
17 changes: 17 additions & 0 deletions kubejs/server_scripts/Tweaks/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,23 @@ ServerEvents.recipes(allthemods => {

// Remove The Raw Redstone Block Recipe As It Allows A Redstone Dupe
allthemods.remove({id: 'regions_unexplored:raw_redstone_block'});


// Fix dense uraninite ore energizing recipes
allthemods.remove({ id: 'powah:energizing/uraninite_from_ore' })
allthemods.custom({
"type": "powah:energizing",
"energy": 50000,
"ingredients": [
{
"tag": "c:ores/uraninite_regular"
}
],
"result": {
"count": 5,
"id": "powah:uraninite"
}
}).id('powah:energizing/uraninite_from_ore')
})

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
Expand Down

0 comments on commit 582a5e7

Please sign in to comment.