[MIRROR] More Remote View Fixes (#11886)

Co-authored-by: Will <7099514+Willburd@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-10-29 20:04:13 -07:00
committed by GitHub
parent 680c4d1396
commit 95839714c7
17 changed files with 147 additions and 75 deletions

View File

@@ -96,22 +96,22 @@
if(prob(5))
owner.AdjustWeakened(5)
if("permanent weakness")
owner.weakened = max(owner.weakened,10)
owner.SetWeakened(max(owner.weakened,10))
if("temporary sleeping")
if(prob(5))
owner.AdjustSleeping(5)
if("permanent sleeping")
owner.sleeping = max(owner.sleeping+10,10)
owner.SetSleeping(max(owner.sleeping+10,10))
if("jittery")
if(owner.get_jittery() < 100)
owner.make_jittery(100)
if("paralysed")
owner.paralysis = max(owner.paralysis,10)
owner.SetParalysis(max(owner.paralysis,10))
if("cough")
if(prob(3))
owner.emote("cough")
if("confusion")
owner.confused = max(owner.confused,10)
owner.SetConfused(max(owner.confused,10))
// Proc for setting all this up for GMs