Skip to content

Commit

Permalink
Merge pull request #133 from Chainmail-Studios/daniel
Browse files Browse the repository at this point in the history
Fix holo bridge disappearing on servers
  • Loading branch information
shedaniel authored Jul 1, 2020
2 parents 56e1ac5 + d466fe6 commit db67a51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ api_version = 0.14.1+build.372-1.16

# Mod
mod_name = astromine
mod_version = 1.0.22
mod_version = 1.0.23
mod_group = com.github.chainmailstudios
version_meta = fabric-1.16.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public void onInitialize() {
AstromineCommonCallbacks.initialize();
AstromineRecipeSerializers.initialize();
AstromineCommands.initialize();
AstromineBlockEntityTypes.initialize();

if (FabricLoader.getInstance().isModLoaded("libblockattributes_fluids")) {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public boolean hasParent() {

@Override
public void tick() {
if (this.world == null || this.world.isClient()) return;
if (!this.hasCheckedChild && this.childPosition != null) {
if (this.world != null) {
BlockEntity childEntity = this.world.getBlockEntity(this.childPosition);
Expand Down

0 comments on commit db67a51

Please sign in to comment.