Skip to content

Commit

Permalink
chore(server/main): fix misleading dependency error (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnnyo authored Sep 1, 2024
1 parent ebd3928 commit 235a995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local startupErrors, errorMessage
if not lib.checkDependency('ox_lib', '3.20.0', true) then
startupErrors, errorMessage = true, 'ox_lib version 3.20.0 or higher is required'
elseif not lib.checkDependency('ox_inventory', '2.42.1', true) then
startupErrors, errorMessage = true, 'ox_inventory version 2.42.0 or higher is required'
startupErrors, errorMessage = true, 'ox_inventory version 2.42.1 or higher is required'
elseif GetConvar('inventory:framework', '') ~= 'qbx' then
startupErrors, errorMessage = true, 'inventory:framework must be set to "qbx" in order to use qbx_core'
end
Expand Down

0 comments on commit 235a995

Please sign in to comment.