improved dropping command blocks into reporter rings

pull/89/head
jmoenig 2019-02-07 07:54:23 +01:00
rodzic 37a8c8d6e6
commit d3a01ea1ee
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -41,6 +41,7 @@
### 2019-02-07
* Store: tweaked loading mechanism to enable command blocks inside reporter rings
* Objects: tweaked spec for settings getter
* Blocks: improved dropping command blocks into reporter rings
### 2019-02-06
* Blocks, BYOB: refactored custom block input options and drop-down menus

Wyświetl plik

@ -11661,8 +11661,7 @@ RingReporterSlotMorph.prototype.attachTargets = function () {
RingReporterSlotMorph.prototype.nestedBlock = function (block) {
if (block) {
var nb = this.nestedBlock();
this.contents().destroy();
this.add(block);
this.silentReplaceInput(this.children[0], block);
if (nb) {
block.bottomBlock().nextBlock(nb);
}