mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-07-30 16:10:08 -04:00
Fix cloud variable limit
This commit is contained in:
parent
808cb2cd60
commit
85843e5d6f
6 changed files with 11 additions and 11 deletions
src/engine
|
@ -99,7 +99,7 @@ const ArgumentTypeMap = (() => {
|
|||
* cloud variable.
|
||||
*/
|
||||
const cloudDataManager = () => {
|
||||
const limit = 8;
|
||||
const limit = 10;
|
||||
let count = 0;
|
||||
|
||||
const canAddCloudVariable = () => count < limit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue