Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba6000 committed Jan 26, 2023
2 parents bd29191 + 6d3cc96 commit d3beed6
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -889,8 +889,8 @@ private static class BeeSimulator {
boolean isValid;
// boolean isBreadingMode;
// boolean isInfinite;
List<BeeDrop> drops;
List<BeeDrop> specialDrops;
List<BeeDrop> drops = new ArrayList<>();
List<BeeDrop> specialDrops = new ArrayList<>();
float beeSpeed;

float maxBeeCycles;
Expand All @@ -917,8 +917,6 @@ public void generate(World world, float t) {
IBeeGenome genome = queen.getGenome();
this.flowerType = genome.getFlowerProvider().getFlowerType();
IAlleleBeeSpecies primary = genome.getPrimary();
drops = new ArrayList<>();
specialDrops = new ArrayList<>();
beeSpeed = genome.getSpeed() * beeModifier.getProductionModifier(null, 1.f);
genome.getPrimary()
.getProductChances()
Expand Down

0 comments on commit d3beed6

Please sign in to comment.