diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-04 15:31:02 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-04 15:31:02 +0000 |
commit | 65ee11a599f904bdece45c55dd41eb2633da575f (patch) | |
tree | 2d21ba1f69d0a04dcc1c0b12cdabc2a087654529 /src/map/status.c | |
parent | 4db605380fc8414ad82a6d2ef51f67789932005a (diff) | |
download | hercules-65ee11a599f904bdece45c55dd41eb2633da575f.tar.gz hercules-65ee11a599f904bdece45c55dd41eb2633da575f.tar.bz2 hercules-65ee11a599f904bdece45c55dd41eb2633da575f.tar.xz hercules-65ee11a599f904bdece45c55dd41eb2633da575f.zip |
* Removed weird mvp reward item drop behavior (see topic:160077)
* Fixed Cart Revolution not transferring status effects on attack, and Cart Termination doing it when it shouldn't (see topic:156745)
* Fixed #refine not accepting names with spaces in them
* Fixed disguises not doing sit-down properly (missing self packet), broken since r6299 stable / r5833 trunk
* Added missing /blackmith packet action to packet_db.txt
* Removed "eathena's custom equipped mobs" from mob&skill db
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10946 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 9bf6861c9..59212b1d5 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5324,7 +5324,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val case SC_TENSIONRELAX: if (sd) { pc_setsit(sd); - clif_sitting(sd, AREA); + clif_sitting(sd); } val2 = 12; //SP cost val4 = 10000; //Decrease at 10secs intervals. |