Skip to content

Commit

Permalink
Decreases blood bag IV insertion time (#3950)
Browse files Browse the repository at this point in the history
# About the pull request

This PR makes it take 1 second instead of 3 seconds (times the surgery
skill multiplier) for blood bag insertion time.

# Explain why it's good for the game

This is taking too long which is severely disincentivizing usage of a
mechanic we want to encourage.


# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog

:cl: Morrow
balance: Decreased blood bag IV insertion time from 3 to 1 second
/:cl:
  • Loading branch information
morrowwolf authored Jul 21, 2023
1 parent f07579d commit 10d3038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/reagent_containers/blood_pack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
if(user.action_busy)
return

if(!do_after(user, 3 SECONDS * user.get_skill_duration_multiplier(SKILL_SURGERY), INTERRUPT_ALL, BUSY_ICON_FRIENDLY, attacked_mob, INTERRUPT_MOVED, BUSY_ICON_MEDICAL))
if(!do_after(user, (1 SECONDS) * user.get_skill_duration_multiplier(SKILL_SURGERY), INTERRUPT_ALL, BUSY_ICON_FRIENDLY, attacked_mob, INTERRUPT_MOVED, BUSY_ICON_MEDICAL))
to_chat(user, SPAN_WARNING("You were interrupted before you could finish!"))
return

Expand Down

0 comments on commit 10d3038

Please sign in to comment.