summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
authorWushin <pasekei@gmail.com>2015-04-13 21:09:44 -0500
committerWushin <pasekei@gmail.com>2015-04-13 21:09:44 -0500
commit28d26850fbf832c15c08ad09af4a6127386c36b8 (patch)
treeaa8809c0bd0ecef62164e5c996ed8b34bb379cbd /src/map
parent807a56aba2d3ed092f0102b06436d8ccc94a63e1 (diff)
parent0d7e222f58208498638045ac737f505152dca50c (diff)
downloadtmwa-28d26850fbf832c15c08ad09af4a6127386c36b8.tar.gz
tmwa-28d26850fbf832c15c08ad09af4a6127386c36b8.tar.bz2
tmwa-28d26850fbf832c15c08ad09af4a6127386c36b8.tar.xz
tmwa-28d26850fbf832c15c08ad09af4a6127386c36b8.zip
Merge pull request #35 from mekolat/emotes
add support for manaplus emotes
Diffstat (limited to 'src/map')
-rw-r--r--src/map/script-fun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp
index 8c25266..5f530cb 100644
--- a/src/map/script-fun.cpp
+++ b/src/map/script-fun.cpp
@@ -2185,7 +2185,7 @@ void builtin_emotion(ScriptState *st)
{
int type;
type = conv_num(st, &AARG(0));
- if (type < 0 || type > 100)
+ if (type < 0 || type > 200)
return;
clif_emotion(map_id2bl(st->oid), type);
}