Skip to content

Commit

Permalink
fixes froot runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdtalon committed Jan 4, 2024
1 parent c70b05e commit a7a191b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/modules/cm_aliens/structures/fruit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@
if(cant_consume)
user.affected_message(affected_xeno,
SPAN_HELPFUL("You <b>fail to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit]</b>."),
SPAN_HELPFUL("[user] <b>fails to feed</b> you <b>[current_fruit]</b>."))
SPAN_HELPFUL("[user] <b>fails to feed</b> you <b>[current_fruit]</b>."),
SPAN_NOTICE("[user] fails to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit]."))
return
user.affected_message(affected_xeno,
SPAN_HELPFUL("You <b>start [user == affected_xeno ? "eating" : "feeding [affected_xeno]"] [current_fruit]</b>."),
Expand All @@ -417,7 +418,8 @@
if(cant_consume) //Check again after the timer incase they ate another fruit
user.affected_message(affected_xeno,
SPAN_HELPFUL("You <b>fail to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit]</b>."),
SPAN_HELPFUL("[user] <b>fails to feed</b> you <b>[current_fruit]</b>."))
SPAN_HELPFUL("[user] <b>fails to feed</b> you <b>[current_fruit]</b>."),
SPAN_NOTICE("[user] fails to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit]."))
return

user.affected_message(affected_xeno,
Expand Down

0 comments on commit a7a191b

Please sign in to comment.