发送处理

This commit is contained in:
tianfeng 2025-11-13 21:45:52 +08:00
parent 2e9ec14176
commit 66e27e0429

View File

@ -153,8 +153,7 @@ public class RocketStatus {
// 从最高等级开始查找找到能量满足发射条件的最高等级
for (RocketConfig config : configs) {
if (config.getLevel() > this.level.getLevel()
&& currentEnergy >= config.getMaxEnergy()) {
if (currentEnergy >= config.getMaxEnergy()) {
return RocketLevel.of(config.getLevel());
}
}