Remove grid from default maps
Before Width: | Height: | Size: 65 KiB |
BIN
src/maps/Blank.jpg
Executable file
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 67 KiB |
BIN
src/maps/Grass.jpg
Executable file
After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 71 KiB |
BIN
src/maps/Sand.jpg
Executable file
After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 91 KiB |
BIN
src/maps/Stone.jpg
Executable file
After Width: | Height: | Size: 180 KiB |
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 105 KiB |
BIN
src/maps/Water.jpg
Executable file
After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 109 KiB |
BIN
src/maps/Wood.jpg
Executable file
After Width: | Height: | Size: 262 KiB |
@ -1,13 +1,13 @@
|
||||
import Case from "case";
|
||||
|
||||
import blankImage from "./Blank Grid 22x22.jpg";
|
||||
import grassImage from "./Grass Grid 22x22.jpg";
|
||||
import sandImage from "./Sand Grid 22x22.jpg";
|
||||
import stoneImage from "./Stone Grid 22x22.jpg";
|
||||
import waterImage from "./Water Grid 22x22.jpg";
|
||||
import woodImage from "./Wood Grid 22x22.jpg";
|
||||
import blankImage from "./Blank.jpg";
|
||||
import grassImage from "./Grass.jpg";
|
||||
import sandImage from "./Sand.jpg";
|
||||
import stoneImage from "./Stone.jpg";
|
||||
import waterImage from "./Water.jpg";
|
||||
import woodImage from "./Wood.jpg";
|
||||
|
||||
import unknownImage from "./Unknown Grid 22x22.jpg";
|
||||
import unknownImage from "./Unknown.jpg";
|
||||
|
||||
export const mapSources = {
|
||||
blank: blankImage,
|
||||
@ -42,7 +42,7 @@ export function getDefaultMaps(userId) {
|
||||
type: "default",
|
||||
created: mapKeys.length - i,
|
||||
lastModified: Date.now(),
|
||||
showGrid: false,
|
||||
showGrid: key !== "stone",
|
||||
snapToGrid: true,
|
||||
group: "",
|
||||
};
|
||||
|