This commit is contained in:
33333-33333 2026-07-11 21:13:39 +09:00
commit d14550dad6
78 changed files with 2827 additions and 563 deletions

View file

@ -225,6 +225,7 @@ class Tarinai { constructor(world, opts = {}) {
this.itemEffectTimers = {
laxative: Math.max(0, Number(effectTimers.laxative || opts.laxativeTimer || 0) || 0),
ammo: Math.max(0, Number(effectTimers.ammo || opts.ammoTimer || 0) || 0),
sedative: Math.max(0, Number(effectTimers.sedative || opts.sedativeTimer || 0) || 0),
};
this.laxativePoopTimer = Number.isFinite(opts.laxativePoopTimer) ? opts.laxativePoopTimer : 3;
this.ammoBumpCooldown = opts.ammoBumpCooldown || 0;