-
v1.2 Stable
released this
2022-04-27 08:58:36 +02:00 | 26 commits to master since this releaseNew update! Enjoy :D
Changelog (from v1.1_01):
-
Added curtains: colored "wallmounted" blocks, that you can close or open by right-click (see README for more info)
-
Added crimson and warped tables/chairs: shown up only if you have mcl_mushroom mod (which is part of MineClone 5 game)
-
API has been simplified (mostly, just by removing repeated/useless parts like modname). For example, if we have simple colored block with wool in recipe:
Before:
mcl_decor.register_foobar("mcl_decor:red_fb", S("Red Foobar"), "mcl_wool:red")
mcl_decor.register_foobar("mcl_decor:blue_fb", S("Blue Foobar"), "mcl_wool:blue")
mcl_decor.register_foobar("mcl_decor:green_fb", S("Green Foobar"), "mcl_wool:green")
After:
mcl_decor.register_foobar("red", S("Red Foobar")) -- (no wool itemstring anymore cause mcl_wool-compatible color is already specified in the beginning)
mcl_decor.register_foobar("blue", S("Blue Foobar"))
mcl_decor.register_foobar("green", S("Green Foobar"))
-
Small changes, fixes and additions
About v1.2pre "known bugs": nope, I didn't fix the curtains-on-floor-or-ceiling bug. Too hard for me, so on_place def was just removed
Downloads
-
-
v1.2pre Pre-Release
released this
2022-04-24 15:44:41 +02:00 | 28 commits to master since this releasePre-release for upcoming new update!
Changelog:
-
Added curtains: colored "wallmounted" blocks, that you can close or open by right-click (see README for more info)
-
Added crimson and warped tables/chairs: shown up only if you have mcl_mushroom mod (which is part of MineClone 5 game)
-
API has been simplified (mostly, just by removing repeated/useless parts like modname). For example, if we have simple colored block with wool in recipe:
Before:
mcl_decor.register_foobar("mcl_decor:red_fb", S("Red Foobar"), "mcl_wool:red")
mcl_decor.register_foobar("mcl_decor:blue_fb", S("Blue Foobar"), "mcl_wool:blue")
mcl_decor.register_foobar("mcl_decor:green_fb", S("Green Foobar"), "mcl_wool:green")
After:
mcl_decor.register_foobar("red", S("Red Foobar")) -- (no wool itemstring anymore cause mcl_wool-compatible color is already specified in the beginning)
mcl_decor.register_foobar("blue", S("Blue Foobar"))
mcl_decor.register_foobar("green", S("Green Foobar"))
-
Small changes, fixes and additions for README.md
Known bugs (should be fixed in stable v1.2):
- Curtains can be placed on floor and ceiling. There already is an unused (commented)
on_place
function for it from mcl_sings, and it works but makes curtains infinite even in survival mode - Something else I'll find, maybe
Downloads
-
-
v1.1_01 Stable
released this
2022-04-08 07:36:37 +02:00 | 37 commits to master since this releaseFix for crediting.
Changelog:
- Added more proper licensing for ts_furniture and homedecor mod(packs)
Downloads
-
v1.1 Stable
released this
2022-03-25 06:51:26 +01:00 | 39 commits to master since this releaseHOTFIX!
Changelog:
- Fix pickaxe craft override by slab tables
Downloads
-
v1.0 Stable
released this
2022-03-24 12:09:48 +01:00 | 41 commits to master since this releaseInitial release for this mod. Finally!
Downloads