Skip to content

Commit

Permalink
Merge pull request #4 from M0nkeyPr0grammer/v2.2.0
Browse files Browse the repository at this point in the history
Updating Pack to v2.2.0
  • Loading branch information
M0nkeyPr0grammer committed Oct 21, 2023
2 parents 1f9a28e + 08c344a commit f1639d5
Show file tree
Hide file tree
Showing 43 changed files with 1,311 additions and 44 deletions.
2 changes: 1 addition & 1 deletion config/entityculling.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"create:carriage_contraption"
],
"disableF3": false,
"skipEntityCulling": false,
"skipEntityCulling": true,
"skipBlockEntityCulling": false
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
30 changes: 26 additions & 4 deletions kubejs/client_scripts/LandscapesReimagined_ClientTweaks.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,9 @@ REIEvents.groupEntries(event => {
InputItem.of('@createchunkloading'),
'create:chromatic_compound',
InputItem.of('@createoreexcavation'),
InputItem.of('@createfoundry'), // New Addition
InputItem.of('@extendedgears') // New Addition
InputItem.of('@createfoundry'),
InputItem.of('@extendedgears'),
InputItem.of('@creategoggles')
]
},
{ id: "kubejs:rei_groups/betternether", name: "Better Nether", items: [InputItem.of('@betternether')] },
Expand Down Expand Up @@ -216,7 +217,8 @@ REIEvents.groupEntries(event => {
'barteringstation:bartering_station',
'tradingpost:trading_post',
InputItem.of('@magnumtorch')
] }
]
},
];

for (const group of groups) {
Expand Down Expand Up @@ -246,7 +248,12 @@ REIEvents.groupEntries(event => {
'railways:green_conductor_cap',
'railways:red_conductor_cap',
'railways:black_conductor_cap',
Item.of('wunderreich:whisperer', '{Damage:0}')
Item.of('wunderreich:whisperer', '{Damage:0}'),
Item.of('enderchests:ender_chest', '{owner:"all"}'),
Item.of('enderchests:ender_bag', '{owner:"all"}'),
Item.of('enderchests:ender_pouch', '{owner:"all"}'),
Item.of('endertanks:ender_tank', '{owner:"all"}'),
Item.of('endertanks:ender_bucket', '{owner:"all"}'),
];

useNbt.forEach(id => {
Expand Down Expand Up @@ -372,6 +379,21 @@ function getID(id) {
else if (id == 'railways:black_conductor_cap') {
return "Black Conductor Caps";
}
else if (id == '1 ender_chest') {
return "Ender Chests";
}
else if (id == '1 ender_bag') {
return "Ender Bags";
}
else if (id == '1 ender_tank') {
return "Ender Tanks";
}
else if (id == '1 ender_bucket') {
return "Ender Buckets";
}
else if (id == '1 ender_pouch') {
return "Ender Pouches";
}
else if (id == '1 whisperer') {
return "Whisperers"; // New Change
}
Expand Down

0 comments on commit f1639d5

Please sign in to comment.