This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 2757dee3f0cb3c73cd430e7c2ef189a9b5423574 Mon Sep 17 00:00:00 2001 | |
| From: Nay <[email protected]> | |
| Date: Fri, 10 Aug 2012 01:51:49 +0100 | |
| Subject: [PATCH] Core/ChatAddon: Implement server side addon communication | |
| filtering | |
| --- | |
| src/server/game/Entities/Player/Player.cpp | 11 +++--- | |
| src/server/game/Entities/Player/Player.h | 2 +- | |
| src/server/game/Groups/Group.cpp | 15 +++++++++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 7958a8178e43125574aa4caf9767dcbf8d1394eb Mon Sep 17 00:00:00 2001 | |
| From: Nay <[email protected]> | |
| Date: Tue, 14 Aug 2012 16:45:09 +0100 | |
| Subject: [PATCH] a | |
| --- | |
| .../world/2012_08_14_02_world_npc_vendor.sql | 6 + | |
| src/server/game/Entities/Creature/Creature.cpp | 8 +- | |
| src/server/game/Entities/Creature/Creature.h | 15 +- | |
| src/server/game/Entities/Player/Player.cpp | 229 ++++++++++++++------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 0ab1fc153d668f67549813453910b43cc7f125df Mon Sep 17 00:00:00 2001 | |
| From: Nay <[email protected]> | |
| Date: Mon, 27 Aug 2012 22:45:21 +0100 | |
| Subject: [PATCH] authserver | |
| --- | |
| src/server/authserver/Authentication/AuthCodes.cpp | 20 +---- | |
| src/server/authserver/Authentication/AuthCodes.h | 11 +-- | |
| src/server/authserver/Server/AuthSocket.cpp | 99 +++++++------------- | |
| src/server/authserver/Server/AuthSocket.h | 1 - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From a21de7b803a51cfb57a96c2c9e1102d9ec702bfe Mon Sep 17 00:00:00 2001 | |
| From: Nay <[email protected]> | |
| Date: Wed, 5 Sep 2012 15:14:45 +0100 | |
| Subject: [PATCH] a | |
| --- | |
| ...04_00_characters_character_cuf_profiles_434.sql | 13 ++ | |
| src/server/game/Entities/Player/Player.cpp | 71 ++++++++++- | |
| src/server/game/Entities/Player/Player.h | 73 +++++++++++ | |
| src/server/game/Handlers/CharacterHandler.cpp | 4 + |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 44c99034ec1cdfc85a3c79375a18ba30336f6dc0 Mon Sep 17 00:00:00 2001 | |
| From: various authors <[email protected]> | |
| Date: Sun, 23 Dec 2012 16:15:40 +0000 | |
| Subject: [PATCH] Core: movement maps beta preview release | |
| --- | |
| cmake/options.cmake | 2 +- | |
| dep/CMakeLists.txt | 7 +- | |
| dep/PackageList.txt | 4 + | |
| dep/recastnavigation/CMakeLists.txt | 20 + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "additional_language_options": | |
| { | |
| "c++" : ["-std=c++11"], | |
| "c": [], | |
| "objc": [], | |
| "objc++": [] | |
| }, | |
| "options": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using MySql.Data.MySqlClient; | |
| using Wintellect.PowerCollections; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| using MoreLinq; | |
| namespace CreatureAddonConverterTDB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using MySql.Data.MySqlClient; | |
| using Wintellect.PowerCollections; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| using MoreLinq; | |
| namespace CreatureAddonConverterTDB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using MySql.Data.MySqlClient; | |
| using Wintellect.PowerCollections; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| using MoreLinq; | |
| namespace CreatureAddonConverterTDB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/server/collision/BoundingIntervalHierarchyWrapper.h b/src/server/collision/BoundingIntervalHierarchyWrapper.h | |
| index 8a99078..315f300 100644 | |
| --- a/src/server/collision/BoundingIntervalHierarchyWrapper.h | |
| +++ b/src/server/collision/BoundingIntervalHierarchyWrapper.h | |
| @@ -33,11 +33,14 @@ class BIHWrap | |
| { | |
| const T* const* objects; | |
| RayCallback& _callback; | |
| + uint32 objects_size; | |