We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39ad34b commit a602297Copy full SHA for a602297
2 files changed
src/exogenesis/ExogenesisMod.java
@@ -37,8 +37,8 @@ public ExogenesisMod(){
37
public void loadContent(){
38
EntityRegistry.register();
39
Utils.init();
40
- ExoStatusEffects.load();
41
ExoTeams.load();
+ ExoStatusEffects.load();
42
ExoWeathers.load();
43
ExoAttribute.load();
44
ExoSounds.load();
src/exogenesis/world/ExoTeams.java
@@ -20,9 +20,8 @@ public static void load() {
20
team.palette[0] = color;
21
team.palette[1] = color.cpy().mul(0.75f);
22
team.palette[2] = color.cpy().mul(0.5f);
23
- team.palette[3] = color.cpy().mul(0.5f);
24
25
- for(int i = 0; i < 4; i++){
+ for(int i = 0; i < 3; i++){
26
team.palettei[i] = team.palette[i].rgba();
27
}
28
return team;
0 commit comments