This commit is contained in:
33333-33333 2026-06-30 22:30:37 +09:00
commit 7455d630fc
82 changed files with 2179 additions and 900 deletions

View file

@ -192,7 +192,7 @@ function continueBuildPlan(t, world, dt) {
? { x: t.x, y: t.y - Math.max(28, (t.radius || 24) * 1.28) }
: findStructureBuildSpot(t, world, plan.type);
if (!spot) {
return stopFailedBuildPlan(t, world, plan.type, "作る場所が見つからない");
return stopFailedBuildPlan(t, world, plan.type, "\u4F5C\u308B\u5834\u6240\u304C\u898B\u3064\u304B\u3089\u306A\u3044");
}
consumeGrassMaterial(material, structureGrassStageCost(plan.type));
const structure = globalThis.StructureRegistry.create(plan.type, t, spot.x, spot.y, world);