Skip to content

Commit

Permalink
Merge pull request #1003 from openmultiplayer/amir/changes
Browse files Browse the repository at this point in the history
Fix player teleport natives and query player list
  • Loading branch information
ksenonadv authored Oct 15, 2024
2 parents 201ff28 + 944c2d5 commit 01d70fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Server/Components/LegacyNetwork/legacy_network_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ void RakNetLegacyNetwork::init(ICore* c)

core->getEventDispatcher().addEventHandler(this);
core->getPlayers().getPlayerChangeDispatcher().addEventHandler(this);
core->getPlayers().getPlayerConnectDispatcher().addEventHandler(this);
core->getPlayers().getPlayerConnectDispatcher().addEventHandler(this, EventPriority_Lowest);
}

void RakNetLegacyNetwork::start()
Expand Down
8 changes: 4 additions & 4 deletions Server/Components/Pawn/Scripting/Player/Natives.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -879,15 +879,15 @@ SCRIPT_API(GetPlayerMarkerForPlayer, int(IPlayer& player, IPlayer& other))
return colour.RGBA();
}

SCRIPT_API(AllowPlayerTeleport, bool(IPlayer* player, bool allow))
SCRIPT_API(AllowPlayerTeleport, bool(IPlayer& player, bool allow))
{
player->allowTeleport(allow);
player.allowTeleport(allow);
return true;
}

SCRIPT_API(IsPlayerTeleportAllowed, bool(IPlayer* player))
SCRIPT_API(IsPlayerTeleportAllowed, bool(IPlayer& player))
{
return player->isTeleportAllowed();
return player.isTeleportAllowed();
}

SCRIPT_API(DisableRemoteVehicleCollisions, bool(IPlayer& player, bool disable))
Expand Down

0 comments on commit 01d70fb

Please sign in to comment.