mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-17 12:03:07 +01:00
@@ -3352,6 +3352,14 @@ std::string NetworkGetPlayerPublicKeyHash(uint32_t id)
|
||||
return {};
|
||||
}
|
||||
|
||||
void NetworkIncrementPlayerNumCommands(uint32_t playerIndex)
|
||||
{
|
||||
auto& network = OpenRCT2::GetContext()->GetNetwork();
|
||||
Guard::IndexInRange(playerIndex, network.player_list);
|
||||
|
||||
network.player_list[playerIndex]->IncrementNumCommands();
|
||||
}
|
||||
|
||||
void NetworkAddPlayerMoneySpent(uint32_t index, money64 cost)
|
||||
{
|
||||
auto& network = OpenRCT2::GetContext()->GetNetwork();
|
||||
@@ -4090,6 +4098,9 @@ std::string NetworkGetPlayerPublicKeyHash(uint32_t id)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
void NetworkIncrementPlayerNumCommands(uint32_t playerIndex)
|
||||
{
|
||||
}
|
||||
void NetworkAddPlayerMoneySpent(uint32_t index, money64 cost)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user