summaryrefslogtreecommitdiff
path: root/src/resources/emotedb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/emotedb.h')
-rw-r--r--src/resources/emotedb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/emotedb.h b/src/resources/emotedb.h
index 53a39685e..94d97a872 100644
--- a/src/resources/emotedb.h
+++ b/src/resources/emotedb.h
@@ -24,6 +24,7 @@
#include <list>
#include <map>
#include <string>
+#include <vector>
class AnimatedSprite;
@@ -36,7 +37,7 @@ struct EmoteSprite
struct EmoteInfo
{
std::list<EmoteSprite*> sprites;
- std::list<std::string> particles;
+ std::vector<std::string> particles;
};
typedef std::map<int, EmoteInfo*> EmoteInfos;