1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-27 22:41:56 +08:00

fix: 修复测试环境与生产环境的wave初始值不一致问题

将测试环境的wave初始值从20改为1,与生产环境保持一致,避免测试时出现不一致的行为
This commit is contained in:
2026-01-24 09:59:12 +08:00
parent a6749928d2
commit 19384e1c50
+1 -1
View File
@@ -22,7 +22,7 @@ func duplicate() -> Wave:
wave.per = per
return wave
static var current: int = startWith(1) if WorldManager.isRelease() else startWith(20)
static var current: int = startWith(1) if WorldManager.isRelease() else startWith(1)
static var WAVE_NORMAL = [
Wave.create("Hen", 1, 3, false, 0, INF, 1),
Wave.create("Cat", 1, 5, false, 0, INF, 1),