mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
potentially fix CME reverting all tempblocks
This commit is contained in:
parent
aa2c74ba31
commit
8aa84fc23c
1 changed files with 5 additions and 1 deletions
|
@ -89,8 +89,12 @@ public class TempBlock {
|
|||
}
|
||||
if (REVERT_QUEUE != null) {
|
||||
for (final TempBlock tempblock : REVERT_QUEUE) {
|
||||
tempblock.revertBlock();
|
||||
tempblock.state.update(true);
|
||||
if (tempblock.revertTask != null) {
|
||||
tempblock.revertTask.run();
|
||||
}
|
||||
}
|
||||
REVERT_QUEUE.clear();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue