Skip to content

Commit

Permalink
Merge pull request TS-Rogue-Star#363 from Durandaal/Port-Adranol-Fix
Browse files Browse the repository at this point in the history
Port Adranol Fix
  • Loading branch information
Very-Soft authored Jun 4, 2024
2 parents e090b3d + 7f47f9c commit 123109f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/reagents/reagents/medicine_vr.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if(M.eye_blurry)
M.eye_blurry = max(M.eye_blurry - 25*removed, 0)
if(M.jitteriness)
M.make_jittery(max(M.jitteriness - 25*removed,0))
M.make_jittery(min(-25*removed,0)) //RSEdit: Ports VOREStation PR16015, makes Adranol function properly

/datum/reagent/numbing_enzyme
name = "Numbing Enzyme"
Expand Down

0 comments on commit 123109f

Please sign in to comment.