Skip to content

Commit

Permalink
del useless coms
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoonij authored Sep 23, 2024
1 parent bcc0104 commit 0d281c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions code/datums/status_effects/debuffs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,6 @@
id = "vomitting_from_toxins"
tick_interval = 2 SECONDS
alert_type = null
/// Has a chance to count up every tick, until it reaches a threshold, which causes the mob to vomit and resets
var/puke_counter = 0

/datum/status_effect/tox_vomit/tick(seconds_between_ticks)
Expand All @@ -1244,7 +1243,7 @@
return

puke_counter++
if(puke_counter < 25) // This is like 150 seconds apparently according to old comments
if(puke_counter < 25)
return

var/mob/living/carbon/carbon = owner
Expand Down

0 comments on commit 0d281c3

Please sign in to comment.