summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-05 21:29:45 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-05 21:29:45 +0000
commit8d11ccf2e1bd71bde6d765bebe7f8a4ac0bc5d2f (patch)
treef56691500c0ce9f9a8d3b93b817df161696842d0
parentbe41590cac32e25a7bbee9967e31855b037b4463 (diff)
downloadhercules-8d11ccf2e1bd71bde6d765bebe7f8a4ac0bc5d2f.tar.gz
hercules-8d11ccf2e1bd71bde6d765bebe7f8a4ac0bc5d2f.tar.bz2
hercules-8d11ccf2e1bd71bde6d765bebe7f8a4ac0bc5d2f.tar.xz
hercules-8d11ccf2e1bd71bde6d765bebe7f8a4ac0bc5d2f.zip
- The can log value now is "reset" when you die allowing you to respawn/quit instantly after death.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9413 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/pc.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 046dee553..f9b504e0e 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2004/12/05
+ * The can log value now is "reset" when you die allowing you to
+ respawn/quit instantly after death. [Skotlex]
* Fixed sc data load failing when using charsave_method: 1 [Skotlex]
* Fixed the interserver link reserve size being 8 times instead of 1/8th
the default size. Changed it to be 1/4th as well. [Skotlex]
diff --git a/src/map/pc.c b/src/map/pc.c
index b0c20ed41..196687c24 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -5133,6 +5133,9 @@ int pc_dead(struct map_session_data *sd,struct block_list *src)
return 0;
}
+ //Reset "can log out" tick.
+ if (battle_config.prevent_logout)
+ sd->canlog_tick = gettick() - battle_config.prevent_logout;
return 1;
}