From a3efc0d5f4291a150027f609c1b674197df9f78f Mon Sep 17 00:00:00 2001 From: Blake Lingenau Date: Wed, 17 Feb 2016 15:52:59 -0500 Subject: [PATCH] added allowCycling to screenAttributes --- Source/settings/maps.js | 4 +++- Source/settings/maps.ts | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Source/settings/maps.js b/Source/settings/maps.js index cf9c0be8..d823ecac 100644 --- a/Source/settings/maps.js +++ b/Source/settings/maps.js @@ -7,7 +7,9 @@ var FullScreenPokemon; "locationDefault": "Black", "groupTypes": ["Text", "Character", "Solid", "Scenery", "Terrain"], "requireEntrance": true, - "screenAttributes": [], + "screenAttributes": [ + "allowCycling" + ], "screenVariables": { "boundaries": FullScreenPokemon.FullScreenPokemon.prototype.getAreaBoundariesReal, "scrollability": FullScreenPokemon.FullScreenPokemon.prototype.getScreenScrollability, diff --git a/Source/settings/maps.ts b/Source/settings/maps.ts index f2829637..9f00ee26 100644 --- a/Source/settings/maps.ts +++ b/Source/settings/maps.ts @@ -8,7 +8,9 @@ module FullScreenPokemon { "locationDefault": "Black", "groupTypes": ["Text", "Character", "Solid", "Scenery", "Terrain"], "requireEntrance": true, - "screenAttributes": [], + "screenAttributes": [ + "allowCycling" + ], "screenVariables": { "boundaries": FullScreenPokemon.prototype.getAreaBoundariesReal, "scrollability": FullScreenPokemon.prototype.getScreenScrollability,