risk 색상 범위 수정

This commit is contained in:
2017-08-27 22:51:04 +09:00
parent a810a5b118
commit c10eeb864b

View File

@@ -324,9 +324,9 @@ namespace friction
public static RISK GetRisk(float fAvg) public static RISK GetRisk(float fAvg)
{ {
if (fAvg <= 4) if (fAvg <= 3)
return RISK.NO; return RISK.NO;
else if (fAvg <= 6) else if (fAvg <= 5)
return RISK.POTENTIAL; return RISK.POTENTIAL;
else else
return RISK.HIGH; return RISK.HIGH;