Skip to content

Commit

Permalink
finalize facades after testing with neo+forge
Browse files Browse the repository at this point in the history
  • Loading branch information
Lothrazar committed Oct 4, 2024
1 parent 48a8e28 commit c279901
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ org.gradle.daemon=false

mod_id=storagenetwork
curse_id=268495
mod_version=1.11.2-SNAPSHOT
mod_version=1.11.2



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,13 @@ public void load(CompoundTag compound) {

@Override
public void saveAdditional(CompoundTag compound) {
super.saveAdditional(compound);
if (facadeState != null) {
if (facadeState == null) {
compound.remove(NBT_FACADE);
}
else {
compound.put(NBT_FACADE, facadeState);
}
super.saveAdditional(compound);
}

public static TileCable getTileCable(BlockGetter world, BlockPos pos) {
Expand Down
4 changes: 2 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/simple-storage-network",
"promos": {
"1.20.1-latest": "1.11.1"
"1.20.1-latest": "1.11.2"
},
"1.20.1": {
"1.10.0":"Ported to 1.20.1, depends on flib-0.0.7+ . Fixed patchouli book. Port to new non-deprecated curios datapack tags. Includes pull requests merged into the 1.18 and 1.19 branches : Merge pull request #492 from IIpragmaII/trunk/1.18 @IIpragmaII @VasurTrekkson Improved performance for export node. fix priority german translation @lightlike . Fixed recipes not showing when pressing the JEI recipe key @Demerso. Create uk_ua.json @SKZGx "
Expand All @@ -10,6 +10,6 @@

,"1.11.1":"The Storage Request Table 'storagenetwork:request' block no longer saves the contents of its crafting-grid; instead items are returned to the player on close, exactly matching vanilla crafting table behavior (this was changed to prevent potential exploits. If any items are left behind in the grid during world upgrade they will be returned and not lost. No changes were made to the remotes or to other blocks). Fixed a null pointer exception "

,"1.11.2":"Ported the Cable Facades feature (from Minecraft 1.12.2), so that you can shift-left-click with a block on a cable to hide it with a facade. Disable this feature or ignore cretain blocks with the config file"
,"1.11.2":"Ported the Cable Facades feature (from Minecraft 1.12.2), so that you can shift-left-click with a block on a cable to hide it with a facade. Disable this feature or ignore certain blocks with the config file"
}
}

0 comments on commit c279901

Please sign in to comment.