mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 07:22:33 -05:00
Add x, y to changeBlock function again after change to merge logic
This commit is contained in:
parent
833c27ef21
commit
99dc46ba80
1 changed files with 2 additions and 0 deletions
|
@ -539,6 +539,8 @@ class Blocks {
|
||||||
params: this._getBlockParams(block),
|
params: this._getBlockParams(block),
|
||||||
// @todo(vm#565) for numerical values with decimals, some countries use comma
|
// @todo(vm#565) for numerical values with decimals, some countries use comma
|
||||||
value: '',
|
value: '',
|
||||||
|
x: block.x,
|
||||||
|
y: block.y,
|
||||||
mode: block.opcode === 'data_listcontents' ? 'list' : block.mode,
|
mode: block.opcode === 'data_listcontents' ? 'list' : block.mode,
|
||||||
sliderMin: block.sliderMin,
|
sliderMin: block.sliderMin,
|
||||||
sliderMax: block.sliderMax
|
sliderMax: block.sliderMax
|
||||||
|
|
Loading…
Reference in a new issue