summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
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: