Fix cloud variable limit

This commit is contained in:
Karishma Chadha 2019-01-07 11:12:47 -05:00
parent 808cb2cd60
commit 85843e5d6f
6 changed files with 11 additions and 11 deletions
src/engine

View file

@ -99,7 +99,7 @@ const ArgumentTypeMap = (() => {
* cloud variable.
*/
const cloudDataManager = () => {
const limit = 8;
const limit = 10;
let count = 0;
const canAddCloudVariable = () => count < limit;