Skip to content

Releases: copygirl/BetterStorage

Build 128

23 Mar 17:26
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.4.1492

  • Add enableStationVanillaCrafting config setting (for #323)

Build 127

28 Oct 14:11
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Fix a crash when placing a crate at Y = 1
  • Fixed a class cast exception due to casting to specific implementation of ISaveHandler

Build 126

03 May 10:45
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

Build 125

01 Apr 16:56
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Update the crafting station to support MT properly
  • Crafting station now needs redstone signal to craft automatically
  • Add a "clear" button to the crafting station?!
  • Fix crash when fake players interact with equipped backpacks (#279)
mods.betterstorage.CraftingStation.addShaped(<output>, <input>, [experience], [crafting time])
mods.betterstorage.CraftingStation.addShapedMirrored(<output>, <input>, [experience], [crafting time])
mods.betterstorage.CraftingStation.addShapeless(<output>, <input>, [experience], [crafting time])
// Output can be a single item or an array of up to 9 items.
// Experience and crafting time are optional and default to 0.

// Turns 8 rotten flesh and 1 bonemeal into 4 leather for 2 levels.
var flesh = <minecraft:rotten_flesh>;
mods.betterstorage.CraftingStation.addShapeless(<minecraft:leather> * 4,
    [ flesh, flesh, flesh, flesh, flesh, flesh, flesh, flesh, <minecraft:dye:15> ], 2);

// Adds a reverse recipe for crafting stations.
mods.betterstorage.CraftingStation.addShapeless(
    [ <minecraft:stonebrick>, <minecraft:light_weighted_pressure_plate>, <minecraft:stonebrick>,
          <minecraft:piston>,                <minecraft:crafting_table>,     <minecraft:piston>,
          <minecraft:planks>,                     <betterstorage:crate>,     <minecraft:planks> ],
    [ <betterstorage:craftingStation> ]);

Build 124

02 Feb 17:59
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Fix present recipe removing cardboard box color
  • Allow presents to be put inside container items, for example cardboard boxes (presents in presents?)
  • Show present recipe in NEI
  • Fix crafting station shift-click crafting unwanted items (#276)
  • Fix containers not updating comparator 2 blocks away (#271)
  • Add MineTweaker support to crafting station!

Build 123

18 Dec 10:32
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Fix nametag removal recipe (for presents) crashing with non-vanilla shears
  • Fix players getting multiple present books
    (and multiple presents on Christmas if they already have them)
  • Fix presents having "dyed" text after being crafted
  • Update some christmas present contents

Build 122

13 Dec 03:39
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Fix Christmas present crash.
    Important! This update prevents the crash from occurring in the first place, but won't fix if applied afterward. You'll have to remove the present with an external editor in this case.

Build 121

10 Dec 21:53
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Fix issue with capturing normal slimes in buckets
  • Slightly brighten base backpack texture
  • Allow dyeing of thaumaturge's backpack

Build 120

29 Nov 14:50
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.2.1230

  • Update to new Armourer's Workshop API (and related changes / fixes)
  • Fix crates splitting when they're not supposed to (#261)
  • Add a new "secret" feature
  • Add an upcoming "event" (can be disabled)
  • Empty cardboard boxes are destroyed with 0 uses left
  • Holding shift shows more items / potion effects in cardboard box / slime in a bucket tooltips
  • Fix cardboard box tooltip showing incorrect amount of "more items"

@RX14 set up automated builds for BetterStorage here.
You can find API, deobf and sources .jars there.

Build 119

20 Nov 09:14
Compare
Choose a tag to compare

Minecraft 1.7.10
Forge 10.13.0.1187

  • Fix incorrect cardboard box contents tooltip
  • Fix armor stand pick block always returning helmet
  • Add Armourer's Workshop support to armor stands