summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/map/chrif.c3
-rw-r--r--src/map/trade.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c
index c5b71db03..211dcb6f4 100644
--- a/src/map/chrif.c
+++ b/src/map/chrif.c
@@ -413,8 +413,7 @@ int chrif_sendmapack(int fd)
chrif_state = 2;
//If there are players online, send them to the char-server. [Skotlex]
- if (!kick_on_disconnect)
- send_users_tochar(-1, gettick(), 0, 0);
+ send_users_tochar(-1, gettick(), 0, 0);
//Re-save any storages that were modified in the disconnection time. [Skotlex]
do_reconnect_storage();
diff --git a/src/map/trade.c b/src/map/trade.c
index 407560697..b9c142332 100644
--- a/src/map/trade.c
+++ b/src/map/trade.c
@@ -33,7 +33,7 @@ void trade_traderequest(struct map_session_data *sd, struct map_session_data *ta
return; //Can't trade in notrade mapflag maps.
}
- if (target_sd == NULL || sd == target_sd) {
+ if (target_sd == NULL || sd == target_sd) {
clif_tradestart(sd, 1); // character does not exist
return;
}