aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/DungeonFinding/LFGPlayerData.cpp
diff options
context:
space:
mode:
authorSpp <spp@jorge.gr>2013-01-09 15:15:42 +0100
committerSpp <spp@jorge.gr>2013-01-09 15:15:42 +0100
commit677ed180802541d4bf487eeaa554c01aa3dc5ceb (patch)
tree6e5d87548c65c6d5cb3e574f0571c7fb363280e7 /src/server/game/DungeonFinding/LFGPlayerData.cpp
parentecfb7623469c4da0e70a53294a53e8f1e3f70537 (diff)
Core/Dungeon Finder: Fix group (5) unable to do new dungeon after finished last dungeon
- Some optimizations here and there - Drop unused columns related to dungeon rewards - Simplify Group reward. All people inside the dungeon should get the reward, no matter how far it's from the boss
Diffstat (limited to 'src/server/game/DungeonFinding/LFGPlayerData.cpp')
-rw-r--r--src/server/game/DungeonFinding/LFGPlayerData.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/DungeonFinding/LFGPlayerData.cpp b/src/server/game/DungeonFinding/LFGPlayerData.cpp
index 0a7f812d03a..410076f7e75 100644
--- a/src/server/game/DungeonFinding/LFGPlayerData.cpp
+++ b/src/server/game/DungeonFinding/LFGPlayerData.cpp
@@ -113,12 +113,12 @@ uint8 LfgPlayerData::GetRoles() const
return m_Roles;
}
-const std::string& LfgPlayerData::GetComment() const
+std::string const& LfgPlayerData::GetComment() const
{
return m_Comment;
}
-const LfgDungeonSet& LfgPlayerData::GetSelectedDungeons() const
+LfgDungeonSet const& LfgPlayerData::GetSelectedDungeons() const
{
return m_SelectedDungeons;
}