summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-06-12 18:26:47 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-06-12 18:26:47 (GMT)
commit780682c22d6215e655d53c0adb167d9064947928 (patch)
tree50fa4f7a56e81be324eafecfbcd26160b455142f /src/client
parenta93caaa3c7fbb0f3ac7d9edf46eb2b4a89f0aeab (diff)
downloadpowder-780682c22d6215e655d53c0adb167d9064947928.zip
powder-780682c22d6215e655d53c0adb167d9064947928.tar.gz
TPT: oxygen fusion, fix two small bugs
Diffstat (limited to 'src/client')
-rw-r--r--src/client/GameSave.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/GameSave.h b/src/client/GameSave.h
index ffb7c6d..1e5b514 100644
--- a/src/client/GameSave.h
+++ b/src/client/GameSave.h
@@ -70,12 +70,14 @@ public:
{
particles[particlesCount++] = v;
}
+ return *this;
}
inline GameSave& operator << (sign v)
{
if(signs.size()<MAXSIGNS && v.text.length())
signs.push_back(v);
+ return *this;
}
private: