producer -> generator (#4441)

This commit is contained in:
Patrick 'Quezler' Mounier
2021-01-26 17:35:48 +01:00
committed by GitHub
parent 6969fbb1e7
commit 03b37235b3

View File

@@ -10,7 +10,7 @@ public class SolarGenerator extends PowerGenerator{
public SolarGenerator(String name){ public SolarGenerator(String name){
super(name); super(name);
//remove the BlockFlag.producer flag to make this a lower priority target than other generators. //remove the BlockFlag.generator flag to make this a lower priority target than other generators.
flags = EnumSet.of(); flags = EnumSet.of();
} }