mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-16 13:13:03 +00:00
Fixes GetSkillClass not defined for the entire range
This commit is contained in:
@@ -172,7 +172,7 @@ datum/preferences
|
|||||||
switch(points)
|
switch(points)
|
||||||
if(0)
|
if(0)
|
||||||
return "Unconfigured"
|
return "Unconfigured"
|
||||||
if(1 to 2)
|
if(1 to 3)
|
||||||
return "Terrifying"
|
return "Terrifying"
|
||||||
if(4 to 6)
|
if(4 to 6)
|
||||||
return "Below Average"
|
return "Below Average"
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ mob/living/carbon/human/proc/GetSkillClass(points)
|
|||||||
switch(points)
|
switch(points)
|
||||||
if(0)
|
if(0)
|
||||||
return "Unconfigured"
|
return "Unconfigured"
|
||||||
if(1 to 2)
|
if(1 to 3)
|
||||||
return "Terrifying"
|
return "Terrifying"
|
||||||
if(4 to 6)
|
if(4 to 6)
|
||||||
return "Below Average"
|
return "Below Average"
|
||||||
|
|||||||
Reference in New Issue
Block a user