diff options
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 22d2ace6d..abb322af6 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3805,6 +3805,12 @@ int pc_setpos(struct map_session_data* sd, unsigned short mapindex, int x, int y return 1; } + if( pc_isdead(sd) ) + { //Revive dead people before warping them + pc_setstand(sd); + pc_setrestartvalue(sd,1); + } + sd->state.changemap = (sd->mapindex != mapindex); if( sd->state.changemap ) { //Misc map-changing settings |