Updates spaceman dmm to 1.7 (#13603)

This commit is contained in:
mikomyazaki
2022-04-24 16:13:50 +02:00
committed by GitHub
parent 1fa55682a9
commit 4886413375
15 changed files with 37 additions and 43 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ var/all_tooltip_styles = list(
if(!UI_style_new) return
var/UI_style_alpha_new = input(usr, "Select a new alpha (transparency) parameter for your UI, between 50 and 255") as null|num
if(!UI_style_alpha_new | !(UI_style_alpha_new <= 255 && UI_style_alpha_new >= 50)) return
if(!UI_style_alpha_new || !(UI_style_alpha_new <= 255 && UI_style_alpha_new >= 50)) return
var/UI_style_color_new = input(usr, "Choose your UI color. Dark colors are not recommended!") as color|null
if(!UI_style_color_new) return