forked from mirror/openmw-tes3mp
[Server] Rename getNextMpNum() into incrementMpNum()
This commit is contained in:
parent
068835ba71
commit
316720e710
3 changed files with 3 additions and 3 deletions
|
@ -300,7 +300,7 @@ void Networking::setCurrentMpNum(int value)
|
|||
currentMpNum = value;
|
||||
}
|
||||
|
||||
int Networking::getNextMpNum()
|
||||
int Networking::incrementMpNum()
|
||||
{
|
||||
currentMpNum++;
|
||||
Script::Call<Script::CallbackIdentity("OnMpNumIncrement")>(currentMpNum);
|
||||
|
|
|
@ -40,7 +40,7 @@ namespace mwmp
|
|||
|
||||
int getCurrentMpNum();
|
||||
void setCurrentMpNum(int value);
|
||||
int getNextMpNum();
|
||||
int incrementMpNum();
|
||||
|
||||
MasterClient *getMasterClient();
|
||||
void InitQuery(std::string queryAddr, unsigned short queryPort, std::string serverAddr, unsigned short serverPort);
|
||||
|
|
|
@ -22,7 +22,7 @@ namespace mwmp
|
|||
{
|
||||
for (unsigned int i = 0; i < event.objectChanges.count; i++)
|
||||
{
|
||||
event.objectChanges.objects.at(i).mpNum = mwmp::Networking::getPtr()->getNextMpNum();
|
||||
event.objectChanges.objects.at(i).mpNum = mwmp::Networking::getPtr()->incrementMpNum();
|
||||
}
|
||||
|
||||
// Send this packet back to the original sender with the mpNum generation from above,
|
||||
|
|
Loading…
Reference in a new issue