File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/gregtech/api/situation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 66
77public class Situation {
88
9- public static GTControlledRegistry <String , Situation > SITUATION_REGISTRY = new GTControlledRegistry <>(Short .MAX_VALUE );
9+ public final static GTControlledRegistry <String , Situation > SITUATION_REGISTRY = new GTControlledRegistry <>(Short .MAX_VALUE );
1010 public final String situationName ;
1111 public final SituationTypes situationTypes ;
1212 public final String situationLocaleName ;
13- public int id ;
13+ public final int id ;
1414
1515 public Situation (int id , String situationName , SituationTypes situationTypes ) {
1616 this .id = id ;
1717 this .situationName = situationName ;
1818 this .situationTypes = situationTypes ;
19- this .situationLocaleName = MODID + " .situation." + this .situationName ;
19+ this .situationLocaleName = "gregtech .situation." + this .situationName ;
2020 registerSituation (id ,situationName ,this );
2121 }
2222
You can’t perform that action at this time.
0 commit comments