Private
Public Access
1
0

rename Min/MaxTemperatureGrowth to TemperatureMinimum/Optimal

This commit is contained in:
2026-05-25 09:21:35 +02:00
parent d7ca3f8e99
commit c5d34ec1b5
10 changed files with 76 additions and 31 deletions

View File

@@ -13,7 +13,7 @@
/beehives BeehiveConsideredEmptyBelowPopulation 500
/beehives PopulationPercentRequirementForSwarm 80
/beehives SwarmPopulationPercentage 0.2
/beehives MaxTemperatureGrowth 10
/beehives TemperatureOptimal 10
```
## 1) Open-for-incoming is always below-threshold
@@ -44,13 +44,13 @@
## 2b) Pre-swarm progress builds at optimal temperature
- Source hive above required percent, cooldown expired.
- Ensure temperature is at or above `MaxTemperatureGrowth`.
- Ensure temperature is at or above `TemperatureOptimal`.
- Expected: block info shows "Bees are preparing to swarm" (v1) or progress % (v2+).
- Expected: progress increases from 0 to 100% over `PreSwarmDurationHours` hours.
## 2c) Pre-swarm progress decreases in cold
- Start with some pre-swarm progress built up.
- Drop temperature below `MaxTemperatureGrowth`.
- Drop temperature below `TemperatureOptimal`.
- Expected: pre-swarm progress decreases back toward 0.
- Expected: swarm does not trigger until progress reaches 100% again.