1
This commit is contained in:
parent
4020e50eb7
commit
fa15c63e36
@ -3568,8 +3568,3 @@ void Human::ProcGemStoneItem(AddItemDTO& dto)
|
||||
}
|
||||
dto.handled = true;
|
||||
}
|
||||
|
||||
void Human::SendTeamBattleReport()
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -419,7 +419,6 @@ private:
|
||||
void FillSMGameOver(cs::SMGameOver& msg);
|
||||
void SendBattleSettlement();
|
||||
void SendBattleReport();
|
||||
void SendTeamBattleReport();
|
||||
void Revive();
|
||||
void AdjustDecHp(float old_health, float& new_health);
|
||||
void ClearPartObjects();
|
||||
|
@ -1394,7 +1394,7 @@ void Human::SendGameOver()
|
||||
FillSMGameOver(msg);
|
||||
SendNotifyMsg(msg);
|
||||
} else {
|
||||
SendTeamBattleReport();
|
||||
GetTeam()->SendTeamBattleReport(this);
|
||||
}
|
||||
}
|
||||
if (IsEntitySubType(EST_Player)) {
|
||||
|
@ -174,3 +174,8 @@ bool Team::HasPlayer()
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void Team::SendTeamBattleReport(Human* sender)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ class Team
|
||||
bool IsFreeTeam();
|
||||
bool HasPlayer();
|
||||
void FillSMGameOver(cs::SMGameOver& msg);
|
||||
void SendTeamBattleReport(Human* sender);
|
||||
|
||||
private:
|
||||
int team_id_ = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user