modified process scheduler, 510 compatibility, explosions moved to process

this is all very alpha please don't hate me too much if i fucked it up
This commit is contained in:
drsingh
2016-03-12 16:36:00 -08:00
parent d8a2d60915
commit dc4217b498
125 changed files with 767 additions and 820 deletions
+1 -1
View File
@@ -367,7 +367,7 @@ var/compx_gridx_max = 5
set name = ".compcommand"
//boutput(world, "compx command: \"[commandstring]\"")
var/list/commands = dd_text2list(commandstring,"%")
var/list/commands = splittext(commandstring,"%")
if(commands.len < 2)
return
var/command = commands[2]
+1 -1
View File
@@ -193,7 +193,7 @@
var/datum/compx_window/grid/window = src.temp
//If everything works out here, coords[1] should be x and coords[2] should be y of the new grid location.
var/list/coords = dd_text2list(href_list["drag"], ",")
var/list/coords = splittext(href_list["drag"], ",")
if(coords.len != 2)
return
+1 -1
View File
@@ -660,7 +660,7 @@
var/datum/computer/file/record/newrec = new
newrec.fields["registered"] = src.authid.registered
newrec.fields["assignment"] = src.authid.assignment
newrec.fields["access"] = dd_list2text(src.authid.access, ";")
newrec.fields["access"] = jointext(src.authid.access, ";")
newrec.fields["balance"] = src.authid.money
spawn(4)