Skip to content

Commit a602297

Browse files
committed
Turrets and other stuff
1 parent 39ad34b commit a602297

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/exogenesis/ExogenesisMod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ public ExogenesisMod(){
3737
public void loadContent(){
3838
EntityRegistry.register();
3939
Utils.init();
40-
ExoStatusEffects.load();
4140
ExoTeams.load();
41+
ExoStatusEffects.load();
4242
ExoWeathers.load();
4343
ExoAttribute.load();
4444
ExoSounds.load();

src/exogenesis/world/ExoTeams.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ public static void load() {
2020
team.palette[0] = color;
2121
team.palette[1] = color.cpy().mul(0.75f);
2222
team.palette[2] = color.cpy().mul(0.5f);
23-
team.palette[3] = color.cpy().mul(0.5f);
2423

25-
for(int i = 0; i < 4; i++){
24+
for(int i = 0; i < 3; i++){
2625
team.palettei[i] = team.palette[i].rgba();
2726
}
2827
return team;

0 commit comments

Comments
 (0)