diff options
author | cannelle <cannelle@users.noreply.github.com> | 2014-02-20 14:30:37 -0600 |
---|---|---|
committer | cannelle <cannelle@users.noreply.github.com> | 2014-02-20 14:30:37 -0600 |
commit | fb82304b2e359cc90924f28522f79e82204fffdf (patch) | |
tree | ec12f0208d4b33e089a67c1252b56c397060ac87 /src/map | |
parent | 866427aba211c4db96c4f4cf97e159d3abfcac0b (diff) | |
download | hercules-fb82304b2e359cc90924f28522f79e82204fffdf.tar.gz hercules-fb82304b2e359cc90924f28522f79e82204fffdf.tar.bz2 hercules-fb82304b2e359cc90924f28522f79e82204fffdf.tar.xz hercules-fb82304b2e359cc90924f28522f79e82204fffdf.zip |
Fixed animation for dead players respawning.
CLR_RESPAWN is actually the logout animation not the respawn animation. CLR_OUTSIGHT is the correct animation for respawning.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 357c4dc6a..9b2f76c0e 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10328,7 +10328,7 @@ void clif_parse_ActionRequest(int fd, struct map_session_data *sd) void clif_parse_Restart(int fd, struct map_session_data *sd) { switch(RFIFOB(fd,2)) { case 0x00: - pc->respawn(sd,CLR_RESPAWN); + pc->respawn(sd,CLR_OUTSIGHT); break; case 0x01: /* Rovert's Prevent logout option - Fixed [Valaris] */ |