Skip to content

Commit

Permalink
Autocompressor Efficiency Increase mk2 (cmss13-devs#6013)
Browse files Browse the repository at this point in the history
# About the pull request

Makes the autocompressor more useful and less set dressing, compresses
every 7.5 seconds rather than every 10 seconds.

# Explain why it's good for the game

Gives more reason to take tools and not weapons.

# Testing Photographs and Procedure
Tested on local 

# Changelog

:cl:
balance: Autocompressor gives 7 seconds of grace time every 7.5 seconds,
instead of 7 seconds every 10 seconds. Approximately 93% efficient,
increased from 70% efficient.
/:cl:
  • Loading branch information
Katskan authored Mar 27, 2024
1 parent cd4ddb6 commit 298b36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/tools/experimental_tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
end_cpr()
return PROCESS_KILL

if(world.time > last_pump + 10 SECONDS)
if(world.time > last_pump + 7.5 SECONDS)
last_pump = world.time
if(H.stat == UNCONSCIOUS)
var/suff = min(H.getOxyLoss(), 10) //Pre-merge level, less healing, more prevention of dying.
Expand Down

0 comments on commit 298b36f

Please sign in to comment.