Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #87 from chochem/fix-uuid-lookup
Browse files Browse the repository at this point in the history
Fix uuid lookup
  • Loading branch information
Caedis committed Apr 29, 2024
2 parents 9679744 + 4f9cb32 commit e2aa030
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
import gregtech.api.util.GT_Utility;
import gregtech.api.util.IGT_HatchAdder;
import gregtech.common.misc.WirelessNetworkManager;
import gregtech.common.misc.spaceprojects.SpaceProjectManager;

public class GTMTE_LapotronicSuperCapacitor extends
GT_MetaTileEntity_EnhancedMultiBlockBase<GTMTE_LapotronicSuperCapacitor> implements ISurvivalConstructable {
Expand Down Expand Up @@ -536,7 +535,7 @@ public void onPreTick(IGregTechTileEntity tileEntity, long aTick) {
WirelessNetworkManager.strongCheckOrAddUser(tileEntity.getOwnerUuid());

// Get team UUID.
global_energy_user_uuid = SpaceProjectManager.getPlayerUUIDFromName(tileEntity.getOwnerName());
global_energy_user_uuid = tileEntity.getOwnerUuid();

not_processed_lsc = false;
}
Expand Down

0 comments on commit e2aa030

Please sign in to comment.