mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 15:01:04 +01:00
Buff flashlight battery lifespan (#21985)
I think flashlights drain unreasonably fast. This PR reduces the power usage of all flashlights by 10x. This makes them not drain unreasonably fast.
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
if(starts_with_cell)
|
||||
cell = new cell_type(src)
|
||||
brightness_levels = list("low" = 2, "medium" = 3, "high" = 4)
|
||||
power_usage = ((brightness_levels[brightness_level]/ 10 ) / efficiency_modifier)
|
||||
power_usage = ((brightness_levels[brightness_level]/ 100 ) / efficiency_modifier)
|
||||
else
|
||||
verbs -= /obj/item/flashlight/verb/toggle_brightness
|
||||
|
||||
|
||||
Reference in New Issue
Block a user