diff options
| author | Spp- <u84280@epreinf21.(none)> | 2011-07-29 14:18:28 +0200 |
|---|---|---|
| committer | Spp- <u84280@epreinf21.(none)> | 2011-07-29 14:18:28 +0200 |
| commit | e47b96af3e3a41eae71e3e3da7eeee8bd3de86bc (patch) | |
| tree | 07d5ff1e6e39d792dbe1a89cc373c06702817787 /src/server/scripts/EasternKingdoms/Stratholme | |
| parent | 06b46ba203d30cc5e2abc9741b2fc737ebdd7c38 (diff) | |
Core: Append single character to stream as character, not as a string
Diffstat (limited to 'src/server/scripts/EasternKingdoms/Stratholme')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp index f5f407d4218..618ac8b7c27 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp @@ -367,8 +367,8 @@ class instance_stratholme : public InstanceMapScript OUT_SAVE_INST_DATA; std::ostringstream saveStream; - saveStream << EncounterState[0] << " " << EncounterState[1] << " " << EncounterState[2] << " " - << EncounterState[3] << " " << EncounterState[4] << " " << EncounterState[5]; + saveStream << EncounterState[0] << ' ' << EncounterState[1] << ' ' << EncounterState[2] << ' ' + << EncounterState[3] << ' ' << EncounterState[4] << ' ' << EncounterState[5]; OUT_SAVE_INST_DATA_COMPLETE; return saveStream.str(); |
