Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 3908449

Browse files
authored
reduces time (#22552)
1 parent b0c52f8 commit 3908449

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/modules/research/server.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@
288288
return FALSE
289289

290290
to_chat(user, span_notice("You can see [front_panel_screws] screw\s. You start unscrewing [front_panel_screws == 1 ? "it" : "them"]..."))
291-
while(tool.use_tool(src, user, 7.5 SECONDS, volume=100))
291+
while(tool.use_tool(src, user, 2 SECONDS, volume=100))
292292
front_panel_screws--
293293

294294
if(front_panel_screws <= 0)
@@ -304,7 +304,7 @@
304304
return FALSE
305305

306306
to_chat(user, span_notice("You can see [source_code_hdd] in a secure housing behind the front panel. You begin to pry it loose..."))
307-
if(tool.use_tool(src, user, 15 SECONDS, volume=100))
307+
if(tool.use_tool(src, user, 8 SECONDS, volume=100))
308308
to_chat(user, span_notice("You destroy the housing, prying [source_code_hdd] free."))
309309
deconstruction_state = HDD_PRIED
310310
return TRUE
@@ -314,7 +314,7 @@
314314
return FALSE
315315

316316
to_chat(user, span_notice("There are [hdd_wires] wire\s connected to [source_code_hdd]. You start cutting [hdd_wires == 1 ? "it" : "them"]..."))
317-
while(tool.use_tool(src, user, 7.5 SECONDS, volume=100))
317+
while(tool.use_tool(src, user, 2 SECONDS, volume=100))
318318
hdd_wires--
319319

320320
if(hdd_wires <= 0)

0 commit comments

Comments
 (0)