Fix entity
This commit is contained in:
parent
b4563ce6b8
commit
7914cc4c03
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ public abstract class Entity {
|
|||
if(tags == null){
|
||||
tags = new LinkedHashMap<String, String>();
|
||||
}
|
||||
return tags.put(key, value);
|
||||
return tags.put(key.toLowerCase(), value);
|
||||
}
|
||||
|
||||
public void replaceTags(Map<String, String> toPut){
|
||||
|
|
Loading…
Reference in a new issue