MehVahdJukaar / vertical_slab_compat

Other
1 stars 5 forks source link

`Bricks`/`Tiles` in Create Deco vertical slab names are incorrectly pluralized #23

Open saltyseadoggo opened 1 year ago

saltyseadoggo commented 1 year ago

All of the vertical slabs for Create Deco have either Bricks or Tiles incorrectly pluralized in their names. Looking at vanilla brick blocks and those of most other mods, they should be <whatever> Brick Vertical Slab or <whatever> Brick Tile Vertical Slab instead of <whatever> Bricks Vertical Slab or <whatever> Brick Tiles Vertical Slab This is an issue with Create Deco itself as well; I intend to report it there too.

MehVahdJukaar commented 1 year ago

Hm can you check their IDs? The mod names is based off the slab I'd/name (I forgot which)

Nycto97 commented 8 months ago

I'm only here to report that (all?) vertical slabs from Create: Deco and Vertical Slabs Compat are duplicated. I don't know if this is supposed to be like that, but I'm reporting it just in case. Also the recipes are duplicated.

Create: Deco vertical slabs: create_deco

Vertical Slabs Compat vertical slabs: v_slab_comp

Duplicated recipes: image

Forge 1.19.2

I'll remove the recipes, loot tables and JEI items with KubeJS, so I'm good for now :)

KostromDan commented 1 month ago

@Nycto97 Thanks for sharing your KubeJS scripts.

ServerEvents.recipes(event => {
    event.remove({id: /v_slab_compat:createdeco*/})
})
JEIEvents.hideItems(event => {
    event.hide(/v_slab_compat:createdeco*/)
})