Prevent HUDType from ever being null when loading config

This commit is contained in:
nossr50 2012-04-27 23:39:36 -07:00
parent f7532cf5b4
commit 357eded2c3

View File

@ -355,5 +355,8 @@ public class Config extends ConfigLoader {
defaulthud = x;
}
}
if(defaulthud == null)
defaulthud = HUDType.STANDARD;
}
}