diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-04-13 12:35:27 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-04-15 11:47:31 -0400 |
commit | 636f0212bd2ea7f0f55d2859fcbea9f91d633903 (patch) | |
tree | e021413a22908674bd4dde1b29fb4f8709ab6e2a /src/map/pc.cpp | |
parent | 2a581450a6ff87c5a183be3855e68b3f2e1b53f3 (diff) | |
download | tmwa-636f0212bd2ea7f0f55d2859fcbea9f91d633903.tar.gz tmwa-636f0212bd2ea7f0f55d2859fcbea9f91d633903.tar.bz2 tmwa-636f0212bd2ea7f0f55d2859fcbea9f91d633903.tar.xz tmwa-636f0212bd2ea7f0f55d2859fcbea9f91d633903.zip |
do not send superfluous info on LoadEndAck
Diffstat (limited to 'src/map/pc.cpp')
-rw-r--r-- | src/map/pc.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp index db3b372..066484d 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -850,10 +850,7 @@ void pc_show_motd(dumb_ptr<map_session_data> sd) // If you remove the sending of this message, // the license does not permit you to publicly use this software. - clif_displaymessage(sd->sess, "Server : ##7This server is Free Software, for details type @source in chat or use the tmwa-source tool"_s); - npc_event_doall_l(stringish<ScriptLabel>("OnPCLoginEvent"_s), sd->bl_id, nullptr); - - sd->state.seen_motd = true; + clif_displaymessage(sd->sess, "Server : ##7This server is Free Software, for details type @source in chat."_s); } /*========================================== |