mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-10 20:22:41 +00:00
Formatting
This commit is contained in:
parent
caceae1028
commit
8b37ef5e67
@ -1911,17 +1911,17 @@ bool QuestManager::summonallplayercorpses(uint32 char_id, const glm::vec4& posit
|
|||||||
}
|
}
|
||||||
|
|
||||||
int QuestManager::getplayercorpsecount(uint32 char_id) {
|
int QuestManager::getplayercorpsecount(uint32 char_id) {
|
||||||
if (char_id > 0)
|
if (char_id > 0) {
|
||||||
return database.CountCharacterCorpses(char_id);
|
return database.CountCharacterCorpses(char_id);
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int QuestManager::getplayercorpsecountbyzoneid(uint32 char_id, uint32 zone_id) {
|
int QuestManager::getplayercorpsecountbyzoneid(uint32 char_id, uint32 zone_id) {
|
||||||
if (char_id > 0 && zone_id > 0)
|
if (char_id > 0 && zone_id > 0) {
|
||||||
return database.CountCharacterCorpsesByZoneID(char_id, zone_id);
|
return database.CountCharacterCorpsesByZoneID(char_id, zone_id);
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user