summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map/skill.c6
-rw-r--r--src/map/status.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 0c1d042d0..aee08d304 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -12649,6 +12649,12 @@ int skill_sit (struct map_session_data *sd, int type)
range = skill_get_splash(TK_SPTIME, lv);
}
+ if( type ) {
+ clif_status_load(&sd->bl,SI_SITTING,1);
+ } else {
+ clif_status_load(&sd->bl,SI_SITTING,0);
+ }
+
if (!flag) return 0;
if(type) {
diff --git a/src/map/status.h b/src/map/status.h
index 44487cc59..e46f0b4a0 100644
--- a/src/map/status.h
+++ b/src/map/status.h
@@ -1175,7 +1175,7 @@ enum si_type {
SI_EQUIPED_FLOOR = 571,
SI_ODINS_POWER = 583,
SI_ALL_RIDING = 613,//awesome 571-613 gap, we're missing quite a few stuff here.
-
+ SI_SITTING = 622,
SI_MAX,
};