diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-10-26 01:29:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-10-26 01:29:29 -0300 |
commit | 439ab328350c730c9f45d66e6a77b3fdd02dc786 (patch) | |
tree | 59bbf9749f20c8986376751e391e14ac311f5df9 /src/map/pc.cpp | |
parent | 886182e8757ae133df1b00f4650a9b48e0a3c3e0 (diff) | |
download | tmwa-22.10.26.tar.gz tmwa-22.10.26.tar.bz2 tmwa-22.10.26.tar.xz tmwa-22.10.26.zip |
Reintroduce OnPCLogoutEvent labelv22.10.26
Diffstat (limited to 'src/map/pc.cpp')
-rw-r--r-- | src/map/pc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 6c2f673..dc34c96 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -5615,6 +5615,8 @@ int pc_logout(dumb_ptr<map_session_data> sd) // [fate] Player logs out #endif pc_setglobalreg(sd, stringish<VarName>("MAGIC_CAST_TICK"_s), 0); + npc_event_doall_l(stringish<ScriptLabel>("OnPCLogoutEvent"_s), sd->bl_id, nullptr); + MAP_LOG_STATS(sd, "LOGOUT"_fmt); return 0; } |