Rename job route "stop" to location

This commit is contained in:
Vortrex
2022-02-10 17:57:40 -06:00
parent 567baf8466
commit 13affb28eb
3 changed files with 25 additions and 25 deletions

View File

@@ -39,7 +39,7 @@ function addAllNetworkHandlers() {
addNetworkEventHandler("vrr.heading", setLocalPlayerHeading);
addNetworkEventHandler("vrr.interior", setLocalPlayerInterior);
addNetworkEventHandler("vrr.minuteDuration", setMinuteDuration);
addNetworkEventHandler("vrr.showJobRouteStop", showJobRouteStop);
addNetworkEventHandler("vrr.showJobRouteLocation", showJobRouteLocation);
addNetworkEventHandler("vrr.snow", setSnowState);
addNetworkEventHandler("vrr.health", setLocalPlayerHealth);
addNetworkEventHandler("vrr.enterPropertyKey", setEnterPropertyKey);
@@ -160,8 +160,8 @@ function tellServerPlayerUsedKeyBind(key) {
// ===========================================================================
function tellServerPlayerArrivedAtJobRouteStop() {
sendNetworkEventToServer("vrr.arrivedAtJobRouteStop");
function tellServerPlayerArrivedAtJobRouteLocation() {
sendNetworkEventToServer("vrr.arrivedAtJobRouteLocation");
}
// ===========================================================================