diff options
author | jackpoz <giacomopoz@gmail.com> | 2020-04-05 15:23:56 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2020-04-05 19:11:00 +0200 |
commit | caae3886d24adf0a5fc95454bb1c45477057bde4 (patch) | |
tree | 28daffa95f800b4de6a1a7c4a67b750af0d0a929 /src | |
parent | 0017c7a0829d12529aac690470bddfa6b5e6bc71 (diff) |
Core/Misc: Remove whitespace at the end of lines
Diffstat (limited to 'src')
34 files changed, 46 insertions, 46 deletions
diff --git a/src/common/Cryptography/Argon2.h b/src/common/Cryptography/Argon2.h index 2143817c734..06f1c6398aa 100644 --- a/src/common/Cryptography/Argon2.h +++ b/src/common/Cryptography/Argon2.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #ifndef TRINITY_ARGON2_H #define TRINITY_ARGON2_H diff --git a/src/common/Cryptography/CryptoGenerics.h b/src/common/Cryptography/CryptoGenerics.h index 439e8c3a1a1..935033ae22f 100644 --- a/src/common/Cryptography/CryptoGenerics.h +++ b/src/common/Cryptography/CryptoGenerics.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #ifndef TRINITY_CRYPTO_GENERICS_HPP #define TRINITY_CRYPTO_GENERICS_HPP diff --git a/src/common/Encoding/Base32.h b/src/common/Encoding/Base32.h index 343f8869941..23705ddfebb 100644 --- a/src/common/Encoding/Base32.h +++ b/src/common/Encoding/Base32.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #ifndef TRINITY_BASE32_H #define TRINITY_BASE32_H diff --git a/src/common/Encoding/Base64.h b/src/common/Encoding/Base64.h index fd46a5f298f..43ef5da65e4 100644 --- a/src/common/Encoding/Base64.h +++ b/src/common/Encoding/Base64.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #ifndef TRINITY_BASE64_H #define TRINITY_BASE64_H diff --git a/src/common/Encoding/BaseEncoding.h b/src/common/Encoding/BaseEncoding.h index fd89e3778b5..7dfe3fd4993 100644 --- a/src/common/Encoding/BaseEncoding.h +++ b/src/common/Encoding/BaseEncoding.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #ifndef TRINITY_BASE_ENCODING_HPP #define TRINITY_BASE_ENCODING_HPP diff --git a/src/server/database/Database/Implementation/CharacterDatabase.cpp b/src/server/database/Database/Implementation/CharacterDatabase.cpp index a0bc5980ea5..bb68b65d3c8 100644 --- a/src/server/database/Database/Implementation/CharacterDatabase.cpp +++ b/src/server/database/Database/Implementation/CharacterDatabase.cpp @@ -315,7 +315,7 @@ void CharacterDatabaseConnection::DoPrepareStatements() PrepareStatement(CHAR_DEL_CORPSE, "DELETE FROM corpse WHERE guid = ?", CONNECTION_ASYNC); PrepareStatement(CHAR_DEL_CORPSES_FROM_MAP, "DELETE FROM corpse WHERE mapId = ? AND instanceId = ?", CONNECTION_ASYNC); PrepareStatement(CHAR_SEL_CORPSE_LOCATION, "SELECT mapId, posX, posY, posZ, orientation FROM corpse WHERE guid = ?", CONNECTION_ASYNC); - + // Respawns PrepareStatement(CHAR_SEL_RESPAWNS, "SELECT type, spawnId, respawnTime FROM respawn WHERE mapId = ? AND instanceId = ?", CONNECTION_SYNCH); PrepareStatement(CHAR_REP_RESPAWN, "REPLACE INTO respawn (type, spawnId, respawnTime, mapId, instanceId) VALUES (?, ?, ?, ?, ?)", CONNECTION_ASYNC); diff --git a/src/server/database/Database/Implementation/CharacterDatabase.h b/src/server/database/Database/Implementation/CharacterDatabase.h index 1367971d697..f5c5c909f8a 100644 --- a/src/server/database/Database/Implementation/CharacterDatabase.h +++ b/src/server/database/Database/Implementation/CharacterDatabase.h @@ -261,7 +261,7 @@ enum CharacterDatabaseStatements : uint32 CHAR_DEL_CORPSE, CHAR_DEL_CORPSES_FROM_MAP, CHAR_SEL_CORPSE_LOCATION, - + CHAR_SEL_RESPAWNS, CHAR_REP_RESPAWN, CHAR_DEL_RESPAWN, diff --git a/src/server/game/AI/CoreAI/PetAI.cpp b/src/server/game/AI/CoreAI/PetAI.cpp index eb0ad17ce7d..db9f1c7caf4 100644 --- a/src/server/game/AI/CoreAI/PetAI.cpp +++ b/src/server/game/AI/CoreAI/PetAI.cpp @@ -419,7 +419,7 @@ void PetAI::DoAttack(Unit* target, bool chase) if (me->HasUnitState(UNIT_STATE_FOLLOW)) me->GetMotionMaster()->Remove(FOLLOW_MOTION_TYPE); - + // Pets with ranged attacks should not care about the chase angle at all. float chaseDistance = me->GetPetChaseDistance(); float angle = chaseDistance == 0.f ? float(M_PI) : 0.f; diff --git a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp index a4da6d466cc..691ca506ede 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp +++ b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp @@ -83,7 +83,7 @@ void EscortAI::InitializeAI() if (me->GetFaction() != me->GetCreatureTemplate()->faction) me->RestoreFaction(); - + Reset(); } @@ -97,7 +97,7 @@ void EscortAI::EnterEvadeMode(EvadeReason /*why*/) me->RemoveAllAuras(); me->CombatStop(true); me->SetLootRecipient(nullptr); - + EngagementOver(); if (HasEscortState(STATE_ESCORT_ESCORTING)) @@ -300,7 +300,7 @@ void EscortAI::Start(bool isActiveAttacker /* = true*/, bool run /* = false */, } _running = run; - + if (!_manualPath && resetWaypoints) FillPointMovementListForCreature(); diff --git a/src/server/game/Chat/Channels/Channel.h b/src/server/game/Chat/Channels/Channel.h index 7d01b1b3925..21063815f61 100644 --- a/src/server/game/Chat/Channels/Channel.h +++ b/src/server/game/Chat/Channels/Channel.h @@ -223,7 +223,7 @@ class TC_GAME_API Channel bool IsOn(ObjectGuid who) const { return _playersStore.find(who) != _playersStore.end(); } bool IsBanned(ObjectGuid guid) const { return _bannedStore.find(guid) != _bannedStore.end(); } - + uint8 GetPlayerFlags(ObjectGuid guid) const { diff --git a/src/server/game/Chat/HyperlinkTags.cpp b/src/server/game/Chat/HyperlinkTags.cpp index 063139c5701..dd3ee990204 100644 --- a/src/server/game/Chat/HyperlinkTags.cpp +++ b/src/server/game/Chat/HyperlinkTags.cpp @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #include "Hyperlinks.h" #include "AchievementMgr.h" #include "ObjectMgr.h" diff --git a/src/server/game/Chat/Hyperlinks.cpp b/src/server/game/Chat/Hyperlinks.cpp index 81a699de0e3..f561b1d7ebb 100644 --- a/src/server/game/Chat/Hyperlinks.cpp +++ b/src/server/game/Chat/Hyperlinks.cpp @@ -355,7 +355,7 @@ bool Trinity::Hyperlinks::CheckAllLinks(std::string const& str) return false; } } - + // Step 2: Parse all link sequences // They look like this: |c<color>|H<linktag>:<linkdata>|h[<linktext>]|h|r // - <color> is 8 hex characters AARRGGBB diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp index d1d1359c701..56c9fd4e7a9 100644 --- a/src/server/game/DungeonFinding/LFGMgr.cpp +++ b/src/server/game/DungeonFinding/LFGMgr.cpp @@ -626,7 +626,7 @@ void LFGMgr::LeaveLfg(ObjectGuid guid, bool disconnected) // This is required in case a LFG group vote-kicks a player in a dungeon, queues, then leaves the queue (maybe to queue later again) if (Group* group = sGroupMgr->GetGroupByGUID(gguid.GetCounter())) if (group->isLFGGroup() && GetDungeon(gguid) && (oldState == LFG_STATE_DUNGEON || oldState == LFG_STATE_FINISHED_DUNGEON)) - newState = oldState; + newState = oldState; LFGQueue& queue = GetQueue(gguid); queue.RemoveFromQueue(gguid); diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index b0552a6811a..eab78dd6d77 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -363,7 +363,7 @@ void ObjectMgr::LoadCreatureTemplates() // 5. Select "Number to Insert", Initial number 1, Increase by 1 // 6. Run this regex // a.find "\/\/[ ]+ - // b.replace "\r\n\t\t\/\/ + // b.replace "\r\n\t\t\/\/ (not that there is a space at the end of the regex, it's needed) QueryResult result = WorldDatabase.Query( // 0 diff --git a/src/server/game/Handlers/BattleGroundHandler.cpp b/src/server/game/Handlers/BattleGroundHandler.cpp index b008d03bfae..9245c22ec61 100644 --- a/src/server/game/Handlers/BattleGroundHandler.cpp +++ b/src/server/game/Handlers/BattleGroundHandler.cpp @@ -137,7 +137,7 @@ void WorldSession::HandleBattlemasterJoinOpcode(WorldPacket& recvData) GetPlayer()->SendDirectMessage(&data); return; } - + // check RBAC permissions if (!_player->CanJoinToBattleground(bg)) { @@ -680,7 +680,7 @@ void WorldSession::HandleBattlemasterJoinArena(WorldPacket& recvData) _player->SendDirectMessage(&data); return; } - + if (!_player->CanJoinToBattleground(bg)) { WorldPacket data; diff --git a/src/server/game/OutdoorPvP/OutdoorPvP.cpp b/src/server/game/OutdoorPvP/OutdoorPvP.cpp index 96a61cdc5a0..aa2a8346e4f 100644 --- a/src/server/game/OutdoorPvP/OutdoorPvP.cpp +++ b/src/server/game/OutdoorPvP/OutdoorPvP.cpp @@ -174,7 +174,7 @@ bool OPvPCapturePoint::DelCreature(uint32 type) TC_LOG_DEBUG("outdoorpvp", "deleting opvp creature type %u", type); m_CreatureTypes[m_Creatures[type]] = 0; m_Creatures[type] = 0; - + return Creature::DeleteFromDB(spawnId); } @@ -183,10 +183,10 @@ bool OPvPCapturePoint::DelObject(uint32 type) uint32 spawnId = m_Objects[type]; if (!spawnId) return false; - + m_ObjectTypes[m_Objects[type]] = 0; m_Objects[type] = 0; - + return GameObject::DeleteFromDB(spawnId); } diff --git a/src/server/game/Server/Packets/CombatPackets.h b/src/server/game/Server/Packets/CombatPackets.h index 6b6fc7c85ee..28124773283 100644 --- a/src/server/game/Server/Packets/CombatPackets.h +++ b/src/server/game/Server/Packets/CombatPackets.h @@ -36,7 +36,7 @@ namespace WorldPackets ObjectGuid Victim; }; - + class AttackSwingNotInRange final : public ServerPacket { public: diff --git a/src/server/game/Server/Packets/MiscPackets.h b/src/server/game/Server/Packets/MiscPackets.h index 7532b899d5b..664afe521a0 100644 --- a/src/server/game/Server/Packets/MiscPackets.h +++ b/src/server/game/Server/Packets/MiscPackets.h @@ -142,7 +142,7 @@ namespace WorldPackets ObjectGuid SourceObjectGUID; uint32 SoundKitID = 0; - + }; class TC_GAME_API PlaySound final : public ServerPacket diff --git a/src/server/game/Server/Packets/TotemPackets.h b/src/server/game/Server/Packets/TotemPackets.h index 02c18be3b72..1cfaa2145ea 100644 --- a/src/server/game/Server/Packets/TotemPackets.h +++ b/src/server/game/Server/Packets/TotemPackets.h @@ -46,7 +46,7 @@ namespace WorldPackets ObjectGuid Totem; uint32 Duration = 0; uint32 SpellID = 0; - + }; } } diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index 1bf436b3a4f..77790d5655f 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -3910,7 +3910,7 @@ void AuraEffect::HandleModCastingSpeed(AuraApplication const* aurApp, uint8 mode if (spellGroupVal) target->ApplyCastTimePercentMod(float(spellGroupVal), !apply); - + target->ApplyCastTimePercentMod((float)GetAmount(), apply); } diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp index 8b3ffd4942d..fa7d33116ed 100644 --- a/src/server/game/World/World.cpp +++ b/src/server/game/World/World.cpp @@ -972,14 +972,14 @@ void World::LoadConfigSettings(bool reload) m_bool_configs[CONFIG_CAST_UNSTUCK] = sConfigMgr->GetBoolDefault("CastUnstuck", true); m_int_configs[CONFIG_INSTANCE_RESET_TIME_HOUR] = sConfigMgr->GetIntDefault("Instance.ResetTimeHour", 4); m_int_configs[CONFIG_INSTANCE_UNLOAD_DELAY] = sConfigMgr->GetIntDefault("Instance.UnloadDelay", 30 * MINUTE * IN_MILLISECONDS); - + m_int_configs[CONFIG_DAILY_QUEST_RESET_TIME_HOUR] = sConfigMgr->GetIntDefault("Quests.DailyResetTime", 3); if (m_int_configs[CONFIG_DAILY_QUEST_RESET_TIME_HOUR] > 23) { TC_LOG_ERROR("server.loading", "Quests.DailyResetTime (%i) must be in range 0..23. Set to 3.", m_int_configs[CONFIG_DAILY_QUEST_RESET_TIME_HOUR]); m_int_configs[CONFIG_DAILY_QUEST_RESET_TIME_HOUR] = 3; } - + m_int_configs[CONFIG_WEEKLY_QUEST_RESET_TIME_WDAY] = sConfigMgr->GetIntDefault("Quests.WeeklyResetWDay", 3); if (m_int_configs[CONFIG_WEEKLY_QUEST_RESET_TIME_WDAY] > 6) { diff --git a/src/server/scripts/Commands/cs_account.cpp b/src/server/scripts/Commands/cs_account.cpp index 39067456569..0efb8f22173 100644 --- a/src/server/scripts/Commands/cs_account.cpp +++ b/src/server/scripts/Commands/cs_account.cpp @@ -840,7 +840,7 @@ public: handler->SetSentErrorMessage(true); return false; } - + Optional<std::vector<uint8>> decoded = Trinity::Encoding::Base32::Decode(secret); if (!decoded) { diff --git a/src/server/scripts/Commands/cs_misc.cpp b/src/server/scripts/Commands/cs_misc.cpp index ae238a3713e..e10babf9bfa 100644 --- a/src/server/scripts/Commands/cs_misc.cpp +++ b/src/server/scripts/Commands/cs_misc.cpp @@ -1264,7 +1264,7 @@ public: if (count < 0) { uint32 destroyedItemCount = playerTarget->DestroyItemCount(itemId, -count, true, false); - + if (destroyedItemCount > 0) { // output the amount of items successfully destroyed diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp index f8fe6c849ed..bb6ba7a3362 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp @@ -113,13 +113,13 @@ public: { InstanceScript::OnGameObjectCreate(go); - switch(go->GetEntry()) + switch(go->GetEntry()) { case GO_BLACK_DRAGON_EGG: if (GetBossState(DATA_FIREMAW) == DONE) go->SetPhaseMask(2, true); else - EggList.push_back(go->GetGUID()); + EggList.push_back(go->GetGUID()); break; default: break; diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp index 0ec8f55d6db..5368477841c 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp @@ -1389,7 +1389,7 @@ public: me->CombatStop(true); me->InterruptNonMeleeSpells(false); me->SetWalk(false); - + EngagementOver(); for (uint8 i = 0; i < ENCOUNTER_DEFENDER_NUMBER; ++i) diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp index 76da8f021b9..5ca9038eb17 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp @@ -423,9 +423,9 @@ void hyjalAI::EnterEvadeMode(EvadeReason /*why*/) if (me->GetEntry() != JAINA) me->RemoveAllAuras(); me->CombatStop(true); - + EngagementOver(); - + me->LoadCreaturesAddon(); if (me->IsAlive()) me->GetMotionMaster()->MoveTargetedHome(); diff --git a/src/server/scripts/Kalimdor/zone_desolace.cpp b/src/server/scripts/Kalimdor/zone_desolace.cpp index 5cc045cc27d..8cdd1b1efd2 100644 --- a/src/server/scripts/Kalimdor/zone_desolace.cpp +++ b/src/server/scripts/Kalimdor/zone_desolace.cpp @@ -88,9 +88,9 @@ public: me->CombatStop(); me->SetFaction(FACTION_FRIENDLY); me->SetSpeedRate(MOVE_RUN, 0.6f); - + EngagementOver(); - + me->GetMotionMaster()->MoveFollow(caster, PET_FOLLOW_DIST, me->GetFollowAngle()); me->setActive(true); me->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP); diff --git a/src/server/scripts/Kalimdor/zone_the_barrens.cpp b/src/server/scripts/Kalimdor/zone_the_barrens.cpp index efa1e4068ed..e9f62fca787 100644 --- a/src/server/scripts/Kalimdor/zone_the_barrens.cpp +++ b/src/server/scripts/Kalimdor/zone_the_barrens.cpp @@ -184,9 +184,9 @@ public: me->RemoveAllAuras(); me->CombatStop(true); me->StopMoving(); - + EngagementOver(); - + me->GetMotionMaster()->MoveIdle(); me->SetFaction(FACTION_FRIENDLY); me->HandleEmoteCommand(EMOTE_ONESHOT_SALUTE); diff --git a/src/server/scripts/Northrend/zone_dragonblight.cpp b/src/server/scripts/Northrend/zone_dragonblight.cpp index 578ba9cb854..b797e50c31d 100644 --- a/src/server/scripts/Northrend/zone_dragonblight.cpp +++ b/src/server/scripts/Northrend/zone_dragonblight.cpp @@ -571,7 +571,7 @@ class npc_wyrmrest_defender : public CreatureScript } return true; } - + void OnCharmed(bool /*apply*/) override { me->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP); diff --git a/src/server/scripts/Spells/spell_quest.cpp b/src/server/scripts/Spells/spell_quest.cpp index cc7a559132d..c3258bb85aa 100644 --- a/src/server/scripts/Spells/spell_quest.cpp +++ b/src/server/scripts/Spells/spell_quest.cpp @@ -1994,7 +1994,7 @@ enum BurstAtTheSeams { AREA_THE_BROKEN_FRONT = 4507, AREA_MORD_RETHAR_THE_DEATH_GATE = 4508, - + NPC_DRAKKARI_CHIEFTAINK = 29099, NPC_ICY_GHOUL = 31142, NPC_VICIOUS_GEIST = 31147, diff --git a/src/server/scripts/World/go_scripts.cpp b/src/server/scripts/World/go_scripts.cpp index 583678ac58a..322237930a1 100644 --- a/src/server/scripts/World/go_scripts.cpp +++ b/src/server/scripts/World/go_scripts.cpp @@ -1868,7 +1868,7 @@ public: _soundId = BELLTOLLHORDE; // undead bell sound break; default: - _soundId = BELLTOLLTRIBAL; // orc drum sound + _soundId = BELLTOLLTRIBAL; // orc drum sound break; } break; @@ -1887,7 +1887,7 @@ public: _soundId = BELLTOLLNIGHTELF; // nightelf bell sound break; default: - _soundId = BELLTOLLALLIANCE; // human bell sound + _soundId = BELLTOLLALLIANCE; // human bell sound } break; } diff --git a/src/server/scripts/World/npcs_special.cpp b/src/server/scripts/World/npcs_special.cpp index 128a76acf1d..efa2e1fde2f 100644 --- a/src/server/scripts/World/npcs_special.cpp +++ b/src/server/scripts/World/npcs_special.cpp @@ -180,7 +180,7 @@ public: AirForceSpawn const& _spawn; ObjectGuid _myGuard; std::unordered_set<ObjectGuid> _toAttack; - + }; CreatureAI* GetAI(Creature* creature) const override diff --git a/src/server/shared/Secrets/SecretMgr.h b/src/server/shared/Secrets/SecretMgr.h index c3ca87c6e44..daa05927716 100644 --- a/src/server/shared/Secrets/SecretMgr.h +++ b/src/server/shared/Secrets/SecretMgr.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ - + #ifndef __TRINITY_SECRETMGR_H__ #define __TRINITY_SECRETMGR_H__ diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 185ed1e1055..f008f531449 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -1123,7 +1123,7 @@ MinQuestScaledXPRatio = 0 # # MinCreatureScaledXPRatio -# Description: Min ratio of experience that a creature kill can grant when player level scaling is factored. This +# Description: Min ratio of experience that a creature kill can grant when player level scaling is factored. This # will also allow spell procs to trigger, such as Drain Soul, if > 0 and exp is grantable. # Example: 50 (No less than 50% experience granted from a lower leveled creature kill) # 100 (Creature kills always grant full experience upon kill) @@ -1292,7 +1292,7 @@ BirthdayTime = 1222964635 # # CacheDataQueries -# Description: Server caches data queries at startup. +# Description: Server caches data queries at startup. # Can be disabled if not enough memory is available. # Default: 1 - (Enabled) # 0 - (Disabled) |