mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Warning fixes
0 is considered null, insetad of an integer. Silly.
This commit is contained in:
@@ -25,9 +25,9 @@
|
||||
var/warning_severity
|
||||
switch (alert("Set warning severity", null, "Standard", "Severe"))
|
||||
if ("standard")
|
||||
warning_severity = 0
|
||||
warning_severity = "0"
|
||||
if ("Severe")
|
||||
warning_severity = 1
|
||||
warning_severity = "1"
|
||||
|
||||
var/warned_computerid = null
|
||||
var/warned_ip = null
|
||||
|
||||
Reference in New Issue
Block a user