From: Mircea Kitsune Date: Fri, 28 Oct 2011 20:54:39 +0000 (+0300) Subject: Add a code comment about how the string works. Clipboard and database seem to be... X-Git-Tag: xonotic-v0.6.0~35^2~18^2~64 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ee9954189fb8466b117af0e369c69107208726ae;p=xonotic%2Fxonotic-data.pk3dir.git Add a code comment about how the string works. Clipboard and database seem to be fully functional now. divVerent won't let me tokenize tokens though, so I need to change implementation to something less hackish. --- diff --git a/qcsrc/server/mutators/sandbox.qc b/qcsrc/server/mutators/sandbox.qc index 87298059f..cfa7ce960 100644 --- a/qcsrc/server/mutators/sandbox.qc +++ b/qcsrc/server/mutators/sandbox.qc @@ -195,6 +195,7 @@ entity sandbox_ObjectPort_Load(string s, float database) float n, i; entity e, parent; + // first separate objects by ; then separate each object's properties for(;;) { n = tokenizebyseparator(s, "; ");