refreshSelectedArea();
} else if (carac == 'm') {
mapWidth = 200;
mapHeight = 100;
getContainer().mapTexture = new BCDynamicTexture(mapWidth, mapHeight);
getContainer().mapTexture.createDynamicTexture();
currentSelection = new BCDynamicTexture(mapWidth, mapHeight);
currentSelection.createDynamicTexture();
uploadMap();
refreshSelectedArea();
container.inventorySlots = inventorySlots;
buttonList = savedButtonList;
} else if (carac == 'M') {
mapWidth = this.mc.displayWidth;
mapHeight = this.mc.displayHeight;
getContainer().mapTexture = new BCDynamicTexture(mapWidth, mapHeight);
getContainer().mapTexture.createDynamicTexture();
currentSelection = new BCDynamicTexture(mapWidth, mapHeight);
currentSelection.createDynamicTexture();
uploadMap();
refreshSelectedArea();
container.inventorySlots = new LinkedList();