Skip to content

Commit

Permalink
Merge branch 'openmultiplayer:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
NexiusTailer authored Oct 16, 2024
2 parents a227fab + 01d70fb commit cf1a339
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 cf1a339

Please sign in to comment.