diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-11 15:53:17 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-11 15:53:17 +0000 |
commit | 4d8ac75258434136d7833524ca72b8268fd4a9c7 (patch) | |
tree | 84f573fdbd368abb27d835a50df0c348bb51b923 /src/map/map.c | |
parent | 3381a5ea9a482409d361f2b36d3aff7a72dcb0c2 (diff) | |
download | hercules-4d8ac75258434136d7833524ca72b8268fd4a9c7.tar.gz hercules-4d8ac75258434136d7833524ca72b8268fd4a9c7.tar.bz2 hercules-4d8ac75258434136d7833524ca72b8268fd4a9c7.tar.xz hercules-4d8ac75258434136d7833524ca72b8268fd4a9c7.zip |
- Trade-requests now fail if the target is in a NPC.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10214 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index d02c6da55..37a6f1d91 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -3154,7 +3154,8 @@ void do_abort(void) { //Save all characters and then flush the inter-connection. if (!chrif_isconnect()) { - ShowFatalError("Server has crashed without a connection to the char-server, character data can't be saved!\n"); + if (pc_db->size(pc_db)) + ShowFatalError("Server has crashed without a connection to the char-server, character data can't be saved!\n"); return; } ShowError("Server received crash signal! Attempting to save all online characters!\n"); |