squash me

This commit is contained in:
LemADEC 2017-05-04 20:04:01 +02:00
parent 55b6910ebc
commit 3ef16e1b46

View file

@ -1,7 +1,7 @@
package cr0s.warpdrive.data;
import cr0s.warpdrive.api.IControlChannel;
import cr0s.warpdrive.block.atomic.TileEntityAcceleratorController;
import cr0s.warpdrive.config.WarpDriveConfig;
import net.minecraft.nbt.NBTTagCompound;
@ -10,7 +10,7 @@ public class AcceleratorControlParameter {
// persistent properties
public int controlChannel; // final
public boolean isEnabled = true;
public double threshold = TileEntityAcceleratorController.ACCELERATOR_THRESHOLD_DEFAULT;
public double threshold = WarpDriveConfig.ACCELERATOR_THRESHOLD_DEFAULT;
public String description = "-";
public AcceleratorControlParameter(final int controlChannel) {