Skip to content

Commit

Permalink
a noob, i am
Browse files Browse the repository at this point in the history
  • Loading branch information
fira committed Nov 25, 2023
1 parent 30b6443 commit bb1226a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/species/monkey.dm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
if(H.stat != CONSCIOUS)
return
if(prob(33) && isturf(H.loc) && !H.pulledby && (H.mobility_flags & MOBILITY_MOVE) && !H.is_mob_restrained()) //won't move if being pulled
step(H, pick(GLOB.cardinal))
step(H, pick(GLOB.cardinals))

var/obj/held = H.get_active_hand()
if(held && prob(1))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry_properties/prop_neutral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@

/datum/chem_property/neutral/hallucinogenic/process_overdose(mob/living/M, potency = 1, delta_time)
if(isturf(M.loc) && !istype(M.loc, /turf/open/space) && (M.mobility_flags & MOBILITY_MOVE) && !M.is_mob_restrained())
step(M, pick(GLOB.cardinal))
step(M, pick(GLOB.cardinals))
M.hallucination += 10
M.make_jittery(5)

Expand Down

0 comments on commit bb1226a

Please sign in to comment.