mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Willburd <7099514+Willburd@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
3148cdaf8d
commit
1b272fa19d
@@ -1,6 +1,5 @@
|
|||||||
/*****************Marker Beacons**************************/
|
/*****************Marker Beacons**************************/
|
||||||
var/list/marker_beacon_colors = list(
|
var/list/marker_beacon_colors = list(
|
||||||
"Random" = FALSE, //not a true color, will pick a random color
|
|
||||||
"Burgundy" = LIGHT_COLOR_FLARE,
|
"Burgundy" = LIGHT_COLOR_FLARE,
|
||||||
"Bronze" = LIGHT_COLOR_ORANGE,
|
"Bronze" = LIGHT_COLOR_ORANGE,
|
||||||
"Yellow" = LIGHT_COLOR_YELLOW,
|
"Yellow" = LIGHT_COLOR_YELLOW,
|
||||||
@@ -69,7 +68,10 @@ var/list/marker_beacon_colors = list(
|
|||||||
return
|
return
|
||||||
if(!in_range(src, user))
|
if(!in_range(src, user))
|
||||||
return
|
return
|
||||||
var/input_color = tgui_input_list(user, "Choose a color.", "Beacon Color", marker_beacon_colors)
|
|
||||||
|
var/options = marker_beacon_colors.Copy()
|
||||||
|
options += list("Random" = FALSE) //not a true color, will pick a random color
|
||||||
|
var/input_color = tgui_input_list(user, "Choose a color.", "Beacon Color", options)
|
||||||
if(user.incapacitated() || !istype(user) || !in_range(src, user))
|
if(user.incapacitated() || !istype(user) || !in_range(src, user))
|
||||||
return
|
return
|
||||||
if(input_color)
|
if(input_color)
|
||||||
@@ -145,7 +147,10 @@ var/list/marker_beacon_colors = list(
|
|||||||
return
|
return
|
||||||
if(!in_range(src, user))
|
if(!in_range(src, user))
|
||||||
return
|
return
|
||||||
var/input_color = tgui_input_list(user, "Choose a color.", "Beacon Color", marker_beacon_colors)
|
|
||||||
|
var/options = marker_beacon_colors.Copy()
|
||||||
|
options += list("Random" = FALSE) //not a true color, will pick a random color
|
||||||
|
var/input_color = tgui_input_list(user, "Choose a color.", "Beacon Color", options)
|
||||||
if(user.incapacitated() || !istype(user) || !in_range(src, user))
|
if(user.incapacitated() || !istype(user) || !in_range(src, user))
|
||||||
return
|
return
|
||||||
if(input_color)
|
if(input_color)
|
||||||
|
|||||||
Reference in New Issue
Block a user