diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-18 04:32:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-18 04:32:35 -0300 |
commit | 6e13a2fe8874689b1f6523fdd63517cc03ac4542 (patch) | |
tree | 737d2738cdc9bb5eae90aad7b13aba8bd8df4abf | |
parent | 90f88f539307c0a6945d305aa591ae0b935365e4 (diff) | |
download | evol-hercules-6e13a2fe8874689b1f6523fdd63517cc03ac4542.tar.gz evol-hercules-6e13a2fe8874689b1f6523fdd63517cc03ac4542.tar.bz2 evol-hercules-6e13a2fe8874689b1f6523fdd63517cc03ac4542.tar.xz evol-hercules-6e13a2fe8874689b1f6523fdd63517cc03ac4542.zip |
Fix default map coordinates
-rw-r--r-- | src/ecommon/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c index 213b0f4..8384ea1 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -29,8 +29,8 @@ void interfaces_init_common(void) void setDefaultMap(void) { mapindex->default_map = aStrdup("000-1"); - mapindex->default_x = 80; - mapindex->default_y = 109; + mapindex->default_x = 22; + mapindex->default_y = 22; } void commonClean(void) |