Send client their enter property key for biz info labels

This commit is contained in:
Vortrex
2021-04-28 21:25:42 -05:00
parent 60837e170f
commit 0d265feba3
2 changed files with 7 additions and 1 deletions

View File

@@ -43,4 +43,6 @@ let controlsEnabled = true;
let streamingRadio = null; let streamingRadio = null;
let enterPropertyKey = null;
// =========================================================================== // ===========================================================================

View File

@@ -889,3 +889,7 @@ function setVehicleLightsState(vehicle, state) {
} }
// =========================================================================== // ===========================================================================
function sendPlayerEnterPropertyKey(client, key) {
triggerNetworkEvent("ag.enterPropertyKey", client, key);
}