summaryrefslogtreecommitdiff
path: root/src/net/eathena/chathandler.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-05-24Switch source code headers to ManaVerse & update copyrights to 2025Fedja Beader1-3/+3
.. instead of manaplus's header. & update copyrights to 2025. Open problem: should it be "The ManaVerse Client", "the ManaVerse client" or something in between in "This file is part of ..." line? All caps is current situation. Squashed with: * update copyright dates for 2025 * Revert "Switch to branch of mplint that checks for manaverse copyright headers" * Change back to uppercase The Why? This line was changed 3 times in history and all had an uppercase The. PS: ManaVerse has no endorsment from the parent project, ManaPlus. * Change to "This file is part of the ManaVerse Client" poppet says 'the' instead of 'The' find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e 's/This file is part of The ManaPlus Client/This file is part of the ManaVerse Client/' {} \+ * Change 'The ManaPlus Client' to 'The ManaVerse Client' in headers find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e '2s/ManaPlus/ManaVerse/' {} \+ * Switch to branch of mplint that checks for manaverse copyright headers .. instead of manaplus's **** mana/plus!179
2024-03-11TypofixFedja Beader1-1/+1
**** Approved-by: Jesusalva Jesusalva <jesusalva@themanaworld.org> Approved-by: Thorbjørn Lindeijer <bjorn@lindeijer.nl>
2024-02-09Update copyright headers up to 2023Jesusalva Jesusalva1-1/+2
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-02-15Remove unused channel parameter from talk methods.s20180215Andrei Karas1-4/+2
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-08-03Remove network handlers in general handler was deleted.Andrei Karas1-0/+5
2017-06-09Fix code style.Andrei Karas1-1/+0
2017-06-08Remove useless extern declarations.Andrei Karas1-1/+1
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-3/+3
2017-01-03Update copyright year.Andrei Karas1-1/+1
2016-12-10Fix some issues found by automatic checks.Andrei Karas1-3/+3
2016-05-17Fix sending packets for version 20151001 and bigger.Andrei Karas1-10/+36
2016-02-20Add some more missing consts.Andrei Karas1-1/+1
2016-02-20Add missing const in net directory.Andrei Karas1-4/+4
2016-02-08Improve some empty string checks.Andrei Karas1-2/+2
2016-02-07Replace most static_cast<Type> to shorter versions from defines.Andrei Karas1-22/+22
2016-01-02Update copyrights year.Andrei Karas1-1/+1
2015-09-09Remove virtual method call from MessageOut constructor.Andrei Karas1-2/+7
2015-09-07Split protocol.h into protocolin.h and protocolout.hAndrei Karas1-1/+1
2015-09-02Remove MessageHandler classAndrei Karas1-177/+0
2015-08-29Fix code style.Andrei Karas1-16/+1
2015-08-25Move receive code from chathandler into separate file.Andrei Karas1-723/+37
2015-08-23Impliment packet SMSG_SCRIPT_MESSAGE.Andrei Karas1-2/+2
2015-08-22Impliment packet SMSG_CHAT_TALKIE_BOX.Andrei Karas1-2/+2
2015-08-22Impliment packet SMSG_IGNORE_NICK_ACK.Andrei Karas1-3/+43
2015-06-29Move notifytypes.h into enums directory.Andrei Karas1-2/+2
2015-06-15Fix code style.Andrei Karas1-0/+1
2015-06-06Fix code style.Andrei Karas1-2/+0
2015-05-30Convert ChatMsgType enum into strong typed enum.Andrei Karas1-1/+1
2015-05-29Add strong typed int type BeingId.Andrei Karas1-6/+6
2015-05-24Add strong typed bool type TryRemoveColors.Andrei Karas1-4/+4
2015-05-24Add strong typed bool type IgnoreRecord.Andrei Karas1-4/+12
2015-05-22Fix code style.Andrei Karas1-1/+4
2015-05-17Fix some issues after automatic checks.Andrei Karas1-9/+10
2015-05-11Fix crash if close client with joined chat room.Andrei Karas1-1/+1
2015-04-24Fix code style.Andrei Karas1-1/+1
2015-04-13eathena: show correct message if item cant be used because not left delay.Andrei Karas1-0/+5
2015-04-10Fix code style.Andrei Karas1-9/+9
2015-04-06eathena: impliment packet SMSG_CHAT_ROOM_SETTINGS.Andrei Karas1-6/+18
2015-04-06eathena: impliment packet SMSG_CHAT_ROOM_DESTROY.Andrei Karas1-3/+3
2015-04-06eathena: impliment packet SMSG_CHAT_ROOM_JOIN_FAILED.Andrei Karas1-2/+29
2015-04-06eathena: impliment packet SMSG_CHAT_ROOM_ROLE_CHANGE.Andrei Karas1-3/+14
2015-04-06eathena: impliment packet SMSG_CHAT_ROOM_LEAVE.Andrei Karas1-3/+29
2015-04-05eathena: impliment packet SMSG_CHAT_ROOM_ADD_MEMBER.Andrei Karas1-2/+4
2015-04-05add chat command for join chat room.Andrei Karas1-3/+22
New chat command: /joinroom NAME
2015-04-05On room creation show room name in general tab caption.Andrei Karas1-1/+14
Not allow move if in room.
2015-04-04Show unimplimented packet debug message on each unsupported packets parameters.Andrei Karas1-1/+1
2015-04-04Add chat command for create chat room (incomplete).Andrei Karas1-3/+20
New chat command: /chatroom NAME
2015-04-03Impliment manner messages.Andrei Karas1-5/+29