Merge pull request 'Bum Fix' (#151) from BumFix into master
Reviewed-by: Lixfel <lixfel@steamwar.de>
Dieser Commit ist enthalten in:
Commit
e34825e1ba
@ -29,7 +29,11 @@ public class Basic implements ShowMode {
|
||||
}
|
||||
RoundedTNTPosition roundedTNTPosition = new RoundedTNTPosition(position);
|
||||
if (tntEntityMap.containsKey(roundedTNTPosition)) {
|
||||
return;
|
||||
if (!position.isExploded()) {
|
||||
return;
|
||||
} else {
|
||||
tntEntityMap.remove(roundedTNTPosition).hide(player).killEntity();
|
||||
}
|
||||
}
|
||||
tntEntityMap.put(roundedTNTPosition, createEntity(position.getLocation(), position.isExploded(), true));
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren