@@ -4,14 +4,19 @@ public class Situations {
44 public static Situation WORKING = new Situation (0 , "working" , SituationsTypes .WORKING , "gregtech.situation.working" );
55
66 public static Situation IDLE = new Situation (1 , "idle" , SituationsTypes .IDLE , "gregtech.situation.idle" );
7+ public static Situation DISABLED_BY_CONTROLLER = new Situation (2 , "workingdisabled" , SituationsTypes .IDLE , "gregtech.situation.disabled_by_controller" );
78
8- public static Situation EMPTY_SOURCE = new Situation (2 , "emptysource" , SituationsTypes .WARNING , "gregtech.situation.empty_source" );
9- public static Situation INSUFFICIENT_POWER = new Situation (3 , "nopower" , SituationsTypes .WARNING , "gregtech.situation.insufficient_power" );
10- public static Situation NO_MATCHING_RECIPE = new Situation (4 , "norecipe" , SituationsTypes .WARNING , "gregtech.situation.no_matching_recipe" );
11- public static Situation OUTPUT_INVENTORY_FULL = new Situation (5 , "outputfull" , SituationsTypes .WARNING , "gregtech.situation.output_inventory_full" );
12- public static Situation TARGET_INVENTORY_FULL = new Situation (6 , "targetfull" , SituationsTypes .WARNING , "gregtech.situation.target_inventory_full" );
9+ public static Situation EMPTY_SOURCE = new Situation (3 , "emptysource" , SituationsTypes .WARNING , "gregtech.situation.empty_source" );
10+ public static Situation INSUFFICIENT_POWER = new Situation (4 , "nopower" , SituationsTypes .WARNING , "gregtech.situation.insufficient_power" );
11+ public static Situation NO_MATCHING_RECIPE = new Situation (5 , "norecipe" , SituationsTypes .WARNING , "gregtech.situation.no_matching_recipe" );
12+ public static Situation OUTPUT_INVENTORY_FULL = new Situation (6 , "outputfull" , SituationsTypes .WARNING , "gregtech.situation.output_inventory_full" );
13+ public static Situation TARGET_INVENTORY_FULL = new Situation (7 , "targetfull" , SituationsTypes .WARNING , "gregtech.situation.target_inventory_full" );
1314
14- public static Situation EXPECTED_CAPABILITY_UNAVAILABLE = new Situation (7 , "nullcapability" , SituationsTypes .ERROR , "gregtech.situation.null_capability" );
15+ public static Situation NO_IMPORT_INVENTORY = new Situation (8 , "noimportinv" , SituationsTypes .ERROR , "gregtech.situation.no_import_inventory" );
16+ public static Situation NO_EXPORT_INVENTORY = new Situation (9 , "noexportinv" , SituationsTypes .ERROR , "gregtech.situation.no_export_inventory" );
17+ public static Situation NO_IMPORT_TANK = new Situation (10 , "noimporttank" , SituationsTypes .ERROR , "gregtech.situation.no_import_tank" );
18+ public static Situation NO_EXPORT_TANK = new Situation (11 , "noexporttank" , SituationsTypes .ERROR , "gregtech.situation.no_export_tank" );
19+ public static Situation EXPECTED_CAPABILITY_UNAVAILABLE = new Situation (12 , "nullcapability" , SituationsTypes .ERROR , "gregtech.situation.null_capability" );
1520
1621 public enum SituationsTypes {
1722 WORKING ,
0 commit comments