1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-19 18:33:00 +01:00

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;
}
}