Archiviert
1
0

Hotfix accept failure

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2020-05-11 20:34:05 +02:00
Ursprung 2f7d727052
Commit 73e0fb8c88

Datei anzeigen

@ -42,7 +42,8 @@ public class SchematicType {
String checktype = section.getString("checktype");
SchematicType current = new SchematicType(type, section.getString("kuerzel"), Type.valueOf(section.getString("type")), checktype != null ? tmpFromDB.get(checktype.toLowerCase()) : null);
tmpTypes.add(current);
tmpFightType.put(current, current.checkType);
if(current.checkType != null)
tmpFightType.put(current.checkType, current);
tmpFromDB.put(type.toLowerCase(), current);
}