-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improvements to the Cryogenic Chamber (#380)
* fix: adjusted player's position in Cryogenic Chambers and fixed typo Cyro * refactor: combined Cryogenic Chamber into a single model * fix: adjusted display values of Cryogenic Chamber item model * refactor: made the style of JSON files more consistent * fix: made the Cryogenic Chamber cooldown message translatable * fix: made bounding box shapes static final * fix: changed messages to be more appropriate to Cryogenic Chambers * refactor: made usage of BedSleepingProblem consistent with GCEventHandlers * feat: added occupied block state to Cryogenic Chamber * fix: resolves #353 * fix: wrote mixin to draw better block outlines for translucent blocks such as the Cryogenic Chamber and Player Transport Tube * feat: added getShape method for Player Transport Tube to give a tube shape rather than just a box * fix: always allow players in creative to use Cryogenic Chambers * fix: corrected Cryogenic Chamber cooldown to display the number of seconds rather than ticks
- Loading branch information
Showing
17 changed files
with
243 additions
and
166 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
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
7 changes: 3 additions & 4 deletions
7
src/main/resources/assets/galacticraft/blockstates/cryogenic_chamber.json
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{ | ||
"variants": { | ||
"facing=north": { "model": "galacticraft:block/cryogenic_chamber_bottom"}, | ||
"facing=east": { "model": "galacticraft:block/cryogenic_chamber_bottom", "y": 90 }, | ||
"facing=west": { "model": "galacticraft:block/cryogenic_chamber_bottom", "y": 270 }, | ||
"facing=south": { "model": "galacticraft:block/cryogenic_chamber_bottom", "y": 180 } | ||
"": { | ||
"model": "galacticraft:block/invisible_machine" | ||
} | ||
} | ||
} |
Oops, something went wrong.