mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Another bunch of fixes for TGUI inputs (I'll be cursed...) (#25009)
* Oh god, oh fuck, WHY DIDN'T I USE isnull()??? * More correct checks * That's all * That's all x2 * Flavor fix
This commit is contained in:
@@ -1118,7 +1118,7 @@
|
||||
|
||||
if("screentip_mode")
|
||||
var/desired_screentip_mode = tgui_input_number(user, "Pick a screentip size, pick 0 to disable screentips. (We suggest a number between 8 and 15):", "Screentip Size", screentip_mode, 20, 0)
|
||||
if(!desired_screentip_mode)
|
||||
if(isnull(desired_screentip_mode))
|
||||
return
|
||||
screentip_mode = desired_screentip_mode
|
||||
|
||||
|
||||
Reference in New Issue
Block a user