diff options
author | Earisu <bruant.bastien@gmail.com> | 2013-06-08 13:16:55 -0700 |
---|---|---|
committer | Earisu <bruant.bastien@gmail.com> | 2013-06-08 13:16:55 -0700 |
commit | 281a69f63af51a4f455ca761448fb6037220babb (patch) | |
tree | 9b4715f60b8735e85d114229a9ea2698b5dd2efe | |
parent | d73783f22b2bb881aab74524d153d89a5932a199 (diff) | |
parent | 899e37263a9750d0d2f55d1ddec644fc69e05da3 (diff) | |
download | hercules-281a69f63af51a4f455ca761448fb6037220babb.tar.gz hercules-281a69f63af51a4f455ca761448fb6037220babb.tar.bz2 hercules-281a69f63af51a4f455ca761448fb6037220babb.tar.xz hercules-281a69f63af51a4f455ca761448fb6037220babb.zip |
Merge pull request #1 from shennetsind/master
Fixing the error
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index ad12181ee..b5d5e3140 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -96,7 +96,7 @@ int pc_class2idx(int class_) { return class_; } -inline int pc_get_group_level(struct map_session_data *sd) { +int pc_get_group_level(struct map_session_data *sd) { return sd->group_level; } |