Skip to content

Commit

Permalink
Fix accidentally using wrong subclass
Browse files Browse the repository at this point in the history
  • Loading branch information
pupnewfster authored and dizzyd committed Mar 12, 2019
1 parent a22d39b commit d66a5b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import mekanism.generators.common.tile.TileEntitySolarGenerator;
import net.minecraft.entity.player.InventoryPlayer;

public class ContainerSolarGenerator extends ContainerGenerator {
public class ContainerSolarGenerator extends ContainerPassiveGenerator {

public ContainerSolarGenerator(InventoryPlayer inventory, TileEntitySolarGenerator generator) {
super(inventory, generator);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import mekanism.generators.common.tile.TileEntityWindGenerator;
import net.minecraft.entity.player.InventoryPlayer;

public class ContainerWindGenerator extends ContainerGenerator {
public class ContainerWindGenerator extends ContainerPassiveGenerator {

public ContainerWindGenerator(InventoryPlayer inventory, TileEntityWindGenerator generator) {
super(inventory, generator);
Expand Down

0 comments on commit d66a5b9

Please sign in to comment.