diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp index b60029482..248cb9b27 100644 --- a/src/server/game/World/World.cpp +++ b/src/server/game/World/World.cpp @@ -1279,9 +1279,7 @@ void World::LoadConfigSettings(bool reload) sLog->outString("WORLD: VMap support included. LineOfSight:%i, getHeight:%i, indoorCheck:%i PetLOS:%i", enableLOS, enableHeight, enableIndoor, enablePetLOS); m_bool_configs[CONFIG_PET_LOS] = sConfigMgr->GetBoolDefault("vmap.petLOS", true); - m_bool_configs[CONFIG_START_ALL_SPELLS] = sConfigMgr->GetBoolDefault("PlayerStart.AllSpells", false); - if (m_bool_configs[CONFIG_START_ALL_SPELLS]) - sLog->outString("WORLD: WARNING: PlayerStart.AllSpells enabled - may not function as intended!"); + m_bool_configs[CONFIG_START_ALL_SPELLS] = sConfigMgr->GetBoolDefault("PlayerStart.CustomSpells", false); m_int_configs[CONFIG_HONOR_AFTER_DUEL] = sConfigMgr->GetIntDefault("HonorPointsAfterDuel", 0); m_bool_configs[CONFIG_START_ALL_EXPLORED] = sConfigMgr->GetBoolDefault("PlayerStart.MapsExplored", false); m_bool_configs[CONFIG_START_ALL_REP] = sConfigMgr->GetBoolDefault("PlayerStart.AllReputation", false); diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 0ee97739e..da69ad405 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -3241,15 +3241,13 @@ ItemDelete.ItemLevel = 80 PlayerStart.AllReputation = 0 # -# PlayerStart.AllSpells -# Description: If enabled, players will start with all their class spells (not talents). -# You must populate playercreateinfo_spell_custom table with the spells you -# want, or this will not work! The table has data for all classes / races up -# to TBC expansion. +# PlayerStart.CustomSpells +# Description: If enabled, players will ignore spells from playercreateinfo_spellstart at character +# creation and will start with spells from the table playercreateinfo_spell_custom instead. # Default: 0 - (Disabled) # 1 - (Enabled) -PlayerStart.AllSpells = 0 +PlayerStart.CustomSpells = 0 # # PlayerStart.MapsExplored