1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 23:11:54 +08:00

fix: 修复测试环境下波浪初始值设置错误

将测试环境下的波浪初始值从10改为1,与发布环境保持一致,避免测试时出现不一致的行为
This commit is contained in:
2026-02-04 23:00:17 +08:00
parent 1d7e9bf847
commit 1aebdfc5e7
+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(10)
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),