Skip to content

Commit

Permalink
update to GT 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed May 3, 2024
1 parent 78b491c commit 3c0b588
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ dependencyResolutionManagement {
def vineFlowerVersion = "1.+"
def macheteVersion = "1.+"
def configurationVersion = "2.2.0"
def gtCeuVersion = "1.2.0.a"
def ldLibVersion = "1.0.25.e"
def gtCeuVersion = "1.2.1"
def ldLibVersion = "1.0.25.f"
def mixinExtrasVersion = "0.2.0"
def mixinVersion = "0.8.6-SNAPSHOT"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ public void onStructureFormed() {
}

@Override
public void onWorking() {
super.onWorking();
public boolean onWorking() {
boolean value = super.onWorking();
Level level = this.getLevel();
// THE RECEIVER IS A DEADLY LAZER
Direction frontFacing = this.getFrontFacing();
Expand All @@ -80,6 +80,7 @@ public void onWorking() {
for (LivingEntity entity : level.getEntitiesOfClass(LivingEntity.class, AABB.ofSize(Vec3.atCenterOf(pos), 3, 512, 3), EntitySelector.LIVING_ENTITY_STILL_ALIVE)) {
entity.hurt(GTDamageTypes.ELECTRIC.source(level), GCyRConfig.INSTANCE.machine.dysonControllerBeamDamage);
}
return value;
}

@Override
Expand Down

0 comments on commit 3c0b588

Please sign in to comment.