Skip to content

Commit

Permalink
fixed missing self
Browse files Browse the repository at this point in the history
  • Loading branch information
swkeep committed Sep 23, 2022
1 parent 159170a commit 28276cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end

function out_vehicles:search(plate)
if self.vehicles[string.upper(plate)] then
return true, plate, elf.vehicles[string.upper(plate)]
return true, plate, self.vehicles[string.upper(plate)]
else
return false, nil, nil
end
Expand Down

0 comments on commit 28276cf

Please sign in to comment.