Updates more paths, for example obj/stuff to /obj/stuff

This commit is contained in:
Firecage
2015-05-31 17:48:33 +02:00
parent 84e8690ec6
commit f79e0fc1aa
83 changed files with 240 additions and 240 deletions
+6 -6
View File
@@ -1,4 +1,4 @@
client/verb/tcssave()
/client/verb/tcssave()
set hidden = 1
if(mob.machine || issilicon(mob))
if(telecomms_check(mob))
@@ -22,7 +22,7 @@ client/verb/tcssave()
src << output("<font color = red>Failed to save: Unable to locate machine. (Back up your code before exiting the window!)</font color>", "tcserror")
client/verb/tcscompile()
/client/verb/tcscompile()
set hidden = 1
if(mob.machine || issilicon(mob))
if(telecomms_check(mob))
@@ -78,7 +78,7 @@ client/verb/tcscompile()
src << output(null, "tcserror")
src << output("<font color = red>Failed to compile: Unable to locate machine. (Back up your code before exiting the window!)</font color>", "tcserror")
client/verb/tcsrun()
/client/verb/tcsrun()
set hidden = 1
if(mob.machine || issilicon(mob))
if(telecomms_check(mob))
@@ -114,7 +114,7 @@ client/verb/tcsrun()
src << output("<font color = red>Failed to run: Unable to locate machine. (Back up your code before exiting the window!)</font color>", "tcserror")
client/verb/exittcs()
/client/verb/exittcs()
set hidden = 1
if(mob.machine || issilicon(mob))
if(telecomms_check(mob))
@@ -126,7 +126,7 @@ client/verb/exittcs()
if(mob in Machine.viewingcode)
Machine.viewingcode.Remove(mob)
client/verb/tcsrevert()
/client/verb/tcsrevert()
set hidden = 1
if(mob.machine || issilicon(mob))
if(telecomms_check(mob))
@@ -155,7 +155,7 @@ client/verb/tcsrevert()
src << output("<font color = red>Failed to revert: Unable to locate machine.</font color>", "tcserror")
client/verb/tcsclearmem()
/client/verb/tcsclearmem()
set hidden = 1
if(mob.machine || issilicon(mob))
if(telecomms_check(mob))
+1 -1
View File
@@ -2,7 +2,7 @@
Class: scope
A runtime instance of a block. Used internally by the interpreter.
*/
scope
/scope
var
scope/parent = null
node/BlockDefinition/block