Skip to content

Commit 6f14860

Browse files
committed
fix upercase ids
1 parent 95f32dc commit 6f14860

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

kubejs/server_scripts/hardmode/progression/pre_lv/ulv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ ServerEvents.recipes(event => {
287287
event.shapeless(
288288
Item.of(`kubejs:ulv_${component}`),
289289
[`gtceu:ulv_${component}`]
290-
).id(id(`old_to_new_HM_ulv_${component}`));
290+
).id(id(`old_to_new_hm_ulv_${component}`));
291291
});
292292

293293
//ulv removals
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// priority: 1000000
22

3-
global.id = (id) => `start:${id}`;
3+
global.id = (id) => `start:${id.toLowerCase()}`;

0 commit comments

Comments
 (0)