1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00
This commit is contained in:
TheBusyBiscuit 2019-12-30 01:25:05 +01:00
parent e90b8c18f7
commit 3773460561
2 changed files with 5 additions and 3 deletions

View File

@ -80,6 +80,7 @@ https://thebusybiscuit.github.io/builds/TheBusyBiscuit/Slimefun4/stable/#4
* Fixed #1325
* Fixed #1295
* Fixed MultiBlocks not accepting different fence types
* Fixed #1337
## Release Candidate 3 (21 Nov 2019)
https://thebusybiscuit.github.io/builds/TheBusyBiscuit/Slimefun4/stable/#3

View File

@ -353,9 +353,10 @@ public abstract class AReactor extends SlimefunItem implements RecipeDisplayItem
boolean explosion = explode.contains(l);
if (explosion) {
BlockStorage.getInventory(l).close();
Slimefun.runSync(() -> SimpleHologram.remove(l.getBlock()));
Slimefun.runSync(() -> {
BlockStorage.getInventory(l).close();
SimpleHologram.remove(l.getBlock());
});
explode.remove(l);
processing.remove(l);