mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-07-19 13:02:20 +01:00
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:
@@ -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]
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user