This commit is contained in:
33333-33333 2026-07-01 16:55:49 +09:00
commit c9dd7182aa
35 changed files with 478 additions and 288 deletions

View file

@ -302,6 +302,13 @@
if (uiCache.grabKind === "item") syncGrabbedPhysicsItem(target, "pinch-release");
target.playerHeld = false;
target._heldByPlayer = false;
if (uiCache.grabKind === "tarinai") {
target.pinchThoughtTimer = 0;
if (target.thought === "つままれている") target.thought = "";
const behavior = typeof currentTarinaiBehavior === "function" ? currentTarinaiBehavior(target) : null;
const reason = String(behavior?.reason || behavior?.text || behavior?.label || "");
if (reason === "つままれている" && typeof clearBehavior === "function") clearBehavior(target);
}
if (target.type === "duplicator") {
target.duplicatorLoadSuppressedUntil = Math.max(target.duplicatorLoadSuppressedUntil || 0, (world.time || 0) + 1.2);
}