Skip to content

Commit

Permalink
Slightly less frequent insect spawns
Browse files Browse the repository at this point in the history
  • Loading branch information
Slotterleet committed May 20, 2024
1 parent 18aeb84 commit 59c96ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fos/content/FOSBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,7 @@ diamond, new MissileBulletType(5f, 5){{
bugSpawn = new BugSpawn("bug-spawn"){{
scaledHealth = 400;
size = 3;
interval = 20 * 60;
interval = 30 * 60;
drawTeamOverlay = false;
customShadow = true;
createRubble = false;
Expand Down
2 changes: 1 addition & 1 deletion src/fos/controllers/EvolutionController.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class EvolutionController {
/** External evolution factor: captured sectors. */
protected float sectorCoefficient = 0.01f;
/** External evolution factor: researched content. */
protected float researchCoefficient = 0.005f;
protected float researchCoefficient = 0.0025f;

protected ObjectFloatMap<SectorPreset> sectorBonuses = new ObjectFloatMap<>();

Expand Down

0 comments on commit 59c96ab

Please sign in to comment.