diff --git a/src/de/craftinc/gates/Gate.java b/src/de/craftinc/gates/Gate.java index b658490..c3c9474 100644 --- a/src/de/craftinc/gates/Gate.java +++ b/src/de/craftinc/gates/Gate.java @@ -257,7 +257,7 @@ public class Gate implements ConfigurationSerializable public Gate(Map map) { try { - id = map.get(idKey).toString(); + id = map.get(idKey).toString().toLowerCase(); if (id == null) { throw new Exception("gates need to have an id");