forked from progwml6/ironchest
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement new chests (from @unicornbloods) (#16)
* Start adding netherite chest * Netherite chest GUI. * Netherite chest textures. * Netherite English lang. * Netherite chest upgrade. * Netherite chest recipes. * Update diamondObsidianUpgrade.png to not look similar to not look similar to netherite icon * Remove copyright from netherite chest tile entity class * Disable loading netherite chests on GTNH * Properly not load chests on GTNH. Add Dark Steel for GTNH Netherite equivalent. Add config option to use steel chest instead of silver with the default being true. * Make netherite chest blast resistant * Fix metadata IDs * Make Netherite an upgrade to obsidian instead * Update bs + enable modern java syntax * Fix compat with gtnh * fix dark steel upgrade icon * make dark steel chest configurable (default to gtnh existence) * catch missing mappings for dark steel & ironchest * fix mapping of obsidianNetheriteUpgrade * spotlessApply * fix translation for netherite upgrade & german translation * git push --------- Co-authored-by: unicornbloods <[email protected]> Co-authored-by: Dakotah <[email protected]> Co-authored-by: Pilzinsel64 <[email protected]>
- Loading branch information
1 parent
ea3f609
commit 40aca9a
Showing
47 changed files
with
283 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/main/java/cpw/mods/ironchest/TileEntityDarkSteelChest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package cpw.mods.ironchest; | ||
|
||
public class TileEntityDarkSteelChest extends TileEntityIronChest { | ||
|
||
public TileEntityDarkSteelChest() { | ||
super(IronChestType.DARKSTEEL); | ||
} | ||
} |
Oops, something went wrong.