mirror of
https://github.com/HaodongMo/ARC-9.git
synced 2025-03-04 03:02:58 -05:00
check for dx<90 not == 90 or 95 (maybe wont show warning if ply has 92 or 98)
This commit is contained in:
parent
7394861bf9
commit
aaa1d7caf8
@ -330,7 +330,7 @@ ARC9.BadConfigStuff = {
|
||||
title = ARC9:GetPhrase("badconf.directx.title"),
|
||||
desc = ARC9:GetPhrase("badconf.directx.desc"),
|
||||
solution = ARC9:GetPhrase("badconf.directx.solution"),
|
||||
cause = function() return render.GetDXLevel() != 95 and render.GetDXLevel() != 90 end
|
||||
cause = function() return (render.GetDXLevel() or 0) < 90 end
|
||||
},
|
||||
tickrate = {
|
||||
title = ARC9:GetPhrase("badconf.tickrate.title"),
|
||||
|
Loading…
Reference in New Issue
Block a user