Skip to content

Commit

Permalink
fluke fix and tweak (#17652)
Browse files Browse the repository at this point in the history
  • Loading branch information
sadkermit authored Oct 26, 2023
1 parent 20597c4 commit bf032ee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 6 additions & 2 deletions code/modules/organs/subtypes/parasite.dm
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
if (!owner)
return

if(prob(10))
if(prob(4))
owner.adjustNutritionLoss(10)

if(stage >= 2) //after ~5 minutes
Expand Down Expand Up @@ -490,7 +490,11 @@
if (!owner)
return

if(prob(10))
if(BP_IS_ROBOTIC(heart))
recession = 10
return

if(prob(4))
owner.adjustNutritionLoss(10)

if(stage >= 2) //after ~7.5 minutes
Expand Down
7 changes: 7 additions & 0 deletions html/changelogs/kermit-fluke-fix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
author: kermit

delete-after: True

changes:
- bugfix: "Heart parasites can no longer eat metal hearts."
- tweak: "Reduces speed of parasite hunger drain."

0 comments on commit bf032ee

Please sign in to comment.