mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-25 20:15:50 +01:00
Allow use of "config name" in default-class
.
This is a very simple change that could potentially save a lot of headaches when people look elsewhere in their config-file and see a class name like "Big Gary" and wonder why putting that value in the `default-class` property won't work.
This commit is contained in:
parent
6c693294bd
commit
4ceb5b7bec
@ -191,7 +191,8 @@ public class ArenaImpl implements Arena
|
||||
|
||||
String defaultClassName = settings.getString("default-class", null);
|
||||
if (defaultClassName != null) {
|
||||
this.defaultClass = classes.get(defaultClassName);
|
||||
String slug = Slugs.create(defaultClassName);
|
||||
this.defaultClass = classes.get(slug);
|
||||
}
|
||||
|
||||
// Blocks and pets
|
||||
|
Loading…
Reference in New Issue
Block a user