Revert "Merge pull request #838 from ArchieBeepBoop/test1"

This reverts commit b0dbacee82, reversing
changes made to 813a2ea1c7.
This commit is contained in:
QuoteFox
2021-01-08 19:28:18 +00:00
parent f1fbb326f9
commit 08c8f744a9
141 changed files with 12694 additions and 12700 deletions
@@ -106,13 +106,13 @@
if(!L)
continue
var/firstchar = L[1]
var/firstchar = copytext(L, 1, 2)
if(firstchar == "#")
continue
var/lockthis = firstchar == "@"
if(lockthis)
L = copytext(L, length(firstchar) + 1)
L = copytext(L, 2)
var/pos = findtext(L, " ")
var/entry = null
@@ -120,7 +120,7 @@
if(pos)
entry = lowertext(copytext(L, 1, pos))
value = copytext(L, pos + length(L[pos]))
value = copytext(L, pos + 1)
else
entry = lowertext(L)
@@ -256,7 +256,7 @@
t = trim(t)
if(length(t) == 0)
continue
else if(t[1] == "#")
else if(copytext(t, 1, 2) == "#")
continue
var/pos = findtext(t, " ")
@@ -265,7 +265,7 @@
if(pos)
command = lowertext(copytext(t, 1, pos))
data = copytext(t, pos + length(t[pos]))
data = copytext(t, pos + 1)
else
command = lowertext(t)