This commit is contained in:
33333-33333 2026-07-03 00:45:22 +09:00
commit ee22e1a929
49 changed files with 1380 additions and 338 deletions

View file

@ -307,7 +307,7 @@ const audio = {
if (type === "firecracker") return this.play("sfx_firecracker_fuse", { category: "ops", minGap: 0.18 });
if (type === "grass") return this.play("sfx_grass", { category: "ops", minGap: 0.08 });
if (type === "zunchi") return this.play("sfx_zunchi", { category: "ops", minGap: 0.12 });
if (type === "ant_nest" || type === "nest_box") return this.play("sfx_ant_nest", { category: "ops", minGap: 0.12 });
if (type === "ant_nest" || type === "nest_box" || type === "pipe") return this.play("sfx_ant_nest", { category: "ops", minGap: 0.12 });
return this.play("sfx_place", { category: "ops", minGap: 0.08 });
},
delete() { this.play("sfx_delete", { category: "ops", minGap: 0.08 }); },