GE Lua Documentation

Press F to search!

removeVehicleFromBlacklist

Definition


-- @/lua/ge/extensions/gameplay/walk.lua:343

local function removeVehicleFromBlacklist(vehId)
  vehicleBlacklist[vehId] = nil
end

Callers

@/lua/ge/extensions/flowgraph/nodes/gameplay/blacklistWalking.lua
      if self.pinIn.allow.value then
        gameplay_walk.removeVehicleFromBlacklist(self.pinIn.vehId.value)
      end
@/lua/ge/extensions/gameplay/taxi.lua
  -- make the taxi climbable
  gameplay_walk.removeVehicleFromBlacklist(currentTaxiId)
  getObjectByID(currentTaxiId).playerUsable = true
@/lua/ge/extensions/career/modules/inventory.lua

    gameplay_walk.removeVehicleFromBlacklist(vehObj:getId())
    return vehObj