Skip to content

Commit

Permalink
Оптимизация и удаление задержки для БС прыжка.
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalFaceLesS committed Nov 11, 2023
1 parent 03702e0 commit e4bb576
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/_compile_options.dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
//#define UNIT_TESTS //Enables unit tests via TEST_RUN_PARAMETER

#ifndef PRELOAD_RSC //set to:
#define PRELOAD_RSC 2 // 0 to allow using external resources or on-demand behaviour;
#define PRELOAD_RSC 0 // 0 to allow using external resources or on-demand behaviour;
#endif // 1 to use the default behaviour;
// 2 for preloading absolutely everything;

Expand Down
4 changes: 2 additions & 2 deletions code/modules/admin/verbs/adminhelp.dm
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
SSredbot.send_discord_message("admin", "Ticket #[id] created by [usr.ckey] ([usr.real_name]): [name]", "ticket")

//send it to TGS if nobody is on and tell us how many were on
var/admin_number_present = send2tgs_adminless_only(initiator_ckey, "Ticket #[id]: [msg]")
var/admin_number_present = send2tgs_adminless_only(initiator_ckey, "<@&1172909270442971207>, был создан новый Ticket #[id]: [msg]")
log_admin_private("Ticket #[id]: [key_name(initiator)]: [name] - heard by [admin_number_present] non-AFK admins who have +BAN.")
if(admin_number_present <= 0)
to_chat(C, "<span class='notice'>No active admins are online, your adminhelp was sent through TGS to admins who are available. This may use IRC or Discord.</span>", confidential = TRUE)
to_chat(C, "<span class='notice'>В данный момент активные администраторы отсутствуют. Ваш тикет был передан администрации в Discord.</span>", confidential = TRUE)
heard_by_no_admins = TRUE
GLOB.ahelp_tickets.active_tickets += src

Expand Down
2 changes: 1 addition & 1 deletion code/modules/overmap/helm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
deconpath = /obj/structure/frame/computer/solgov

/datum/config_entry/number/bluespace_jump_wait
default = 30 MINUTES
default = 1 MINUTES

/obj/machinery/computer/helm/Initialize(mapload, obj/item/circuitboard/C)
. = ..()
Expand Down

0 comments on commit e4bb576

Please sign in to comment.