Skip to content

Commit

Permalink
feature: небольшое изменение кнопок
Browse files Browse the repository at this point in the history
  • Loading branch information
SSensum committed Oct 17, 2023
1 parent cd28bdf commit 223dde5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions code/modules/admin/admin_verbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ GLOBAL_PROTECT(admin_verbs_debug)
/client/proc/reload_interactions, /*SKYRAT EDIT ADDITION*/
/client/proc/test_area_spawner, /*AUTOMAPPER - SKYRAT EDIT ADDITION*/
/client/proc/toggle_liquid_debug, /*SKYRAT EDIT ADDITION*/

/*FLUFFY FRONTIER ADDITION BEGIN - EVENTMAKER QOL*/
/datum/admins/proc/delay,
/datum/admins/proc/delay_round_end,
/datum/admins/proc/end_round,
/*FLUFFY FRONTIER EDIT END*/
)
GLOBAL_LIST_INIT(admin_verbs_possess, list(/proc/possess, GLOBAL_PROC_REF(release)))
GLOBAL_PROTECT(admin_verbs_possess)
Expand Down
5 changes: 4 additions & 1 deletion code/modules/admin/topic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@


else if(href_list["edit_shuttle_time"])
if(!check_rights(R_SERVER))
//FLUFFY FRONTIER CHANGE BEGIN - EVENTMAKER QOL
//if(!check_rights(R_SERVER)) - FLUFFY FRONTIER - ORIGINAL
if(!check_rights(R_ADMIN))
//FLUFFY FRONTIER CHANGE END
return

var/timer = input("Enter new shuttle duration (seconds):","Edit Shuttle Timeleft", SSshuttle.emergency.timeLeft() ) as num|null
Expand Down

0 comments on commit 223dde5

Please sign in to comment.