Upload files

This commit is contained in:
SandPoot
2021-10-07 12:32:20 -03:00
parent 39e63d5ac8
commit 3de08a74e7
3 changed files with 22 additions and 14 deletions

View File

@@ -15,6 +15,6 @@
var/indelay = stripped_input(usr, "Enter the tooltip delay in milliseconds (default: 500)", "Enter tooltip delay", "", 10)
indelay = text2num(indelay)
if(usr)//is this what you mean?
prefs.tip_delay = indelay
prefs.tip_delay = max(indelay, 0.01)
prefs.save_preferences()
to_chat(usr, "<span class='danger'>Tooltip delay set to [indelay] milliseconds.</span>")