diff options
author | Stijn Buys <ingar@osirion.org> | 2008-03-03 19:16:26 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-03-03 19:16:26 +0000 |
commit | c326c5d31e710cd22f4d5047252da2bfc77da1f1 (patch) | |
tree | 3ed7bde5050898e27668fffe81f7b541a94a9268 /src/core | |
parent | 75e52044c47d39d20c98e2cdc284a41d1974346a (diff) |
fixes two network play bugs
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/entity.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/entity.cc b/src/core/entity.cc index 097b322..891c758 100644 --- a/src/core/entity.cc +++ b/src/core/entity.cc @@ -122,6 +122,7 @@ Entity::Entity(std::istream & is) while ( (is.get(c)) && (c != '"')) n += c; entity_name = n; + n.clear(); while ( (is.get(c)) && (c != '"')); while ( (is.get(c)) && (c != '"')) |