From c0ac6069f6d20900c5578908d1a0192efa9fa10c Mon Sep 17 00:00:00 2001 From: wyld-sw Date: Sun, 8 Jul 2018 17:09:40 -0400 Subject: [PATCH] Reverted unintentional change affecting minimap placement. --- src/asciimap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/asciimap.c b/src/asciimap.c index 9c4104b..42f5e39 100644 --- a/src/asciimap.c +++ b/src/asciimap.c @@ -585,9 +585,9 @@ MapArea(target_room, ch, centre, centre, min, max, ns_size/2, ew_size/2, worldma char_size = 3*(size+1) + (size) + 4; if(worldmap) - send_to_char(ch, "%s", strpaste(WorldMap(centre, size, MAP_CIRCLE, MAP_COMPACT), strfrmt(str, GET_SCREEN_WIDTH(ch) - char_size, size*2 + 1, FALSE, TRUE, TRUE), " \tn")); + send_to_char(ch, "%s", strpaste(strfrmt(str, GET_SCREEN_WIDTH(ch) - char_size, size*2 + 1, FALSE, TRUE, TRUE), WorldMap(centre, size, MAP_CIRCLE, MAP_COMPACT), " \tn")); else - send_to_char(ch, "%s", strpaste(CompactStringMap(centre, size), strfrmt(str, GET_SCREEN_WIDTH(ch) - char_size, size*2 + 1, FALSE, TRUE, TRUE), " \tn")); + send_to_char(ch, "%s", strpaste(strfrmt(str, GET_SCREEN_WIDTH(ch) - char_size, size*2 + 1, FALSE, TRUE, TRUE), CompactStringMap(centre, size), " \tn")); }