Player detector got radius config

This commit is contained in:
drcrazy 2021-06-18 23:05:43 +03:00
parent 88d5ee015a
commit 8ab3b3a7be
7 changed files with 180 additions and 24 deletions

View file

@ -333,9 +333,12 @@ public class TechRebornConfig {
@Config(config = "machines", category = "player_detector", key = "PlayerDetectorMaxEnergy", comment = "Player Detector Max Energy")
public static int playerDetectorMaxEnergy = 10000;
@Config(config = "machines", category = "player_detector", key = "PlayerDetectorEUPerSecond", comment = "Player Detector Energy Consumption per tick")
@Config(config = "machines", category = "player_detector", key = "PlayerDetectorEnergyUsage", comment = "Player Detector Energy Consumption per second")
public static int playerDetectorEuPerTick = 1;
@Config(config = "machines", category = "player_detector", key = "PlayerDetectorMaxRadius", comment = "Player Detector maximum detection radius")
public static int playerDetectorMaxRadius = 128;
@Config(config = "machines", category = "Distillation_tower", key = "DistillationTowerMaxInput", comment = "Distillation Tower Max Input (Energy per tick)")
public static int distillationTowerMaxInput = 128;