diff --git a/game/modules/tome/data/quests/ring-of-blood.lua b/game/modules/tome/data/quests/ring-of-blood.lua
index 8a6b1e13d8b9830a108f31f296e7383d2ad8d6a5..55b4ec21540a8a3cfbf0cb1ff5eeeed7b913f733 100644
--- a/game/modules/tome/data/quests/ring-of-blood.lua
+++ b/game/modules/tome/data/quests/ring-of-blood.lua
@@ -72,7 +72,7 @@ start_game = function(self)
 
 	slave.on_die = function(self)
 		game.player:hasQuest("ring-of-blood"):stop_game(false)
-		game.log("#CRIMSON#The crowd yells: 'LOOSER!'")
+		game.log("#CRIMSON#The crowd yells: 'LOSER!'")
 	end
 
 	game.log("#LIGHT_GREEN#As you touch the orb your will fills the slave's body. You take full control of his actions!")
diff --git a/src/map.c b/src/map.c
index 8540304ca696ffad59d6ee16c17f1da2ab5f095d..7704a7bb82117347056fe85c17011ef4151b5bac 100644
--- a/src/map.c
+++ b/src/map.c
@@ -1329,7 +1329,7 @@ static int minimap_to_screen(lua_State *L)
 				if ((i < 0) || (j < 0) || (i >= map->w) || (j >= map->h)) continue;
 				map_object *mo = map->grids[i][j][z];
 				if (!mo || mo->mm_r < 0) continue;
-				ptr = (j * map->mm_rw + i) * 4;
+				ptr = ((j-mdy) * map->mm_rw + (i-mdx)) * 4;
 
 				if ((mo->on_seen && map->grids_seens[j*map->w+i]) || (mo->on_remember && map->grids_remembers[i][j]) || mo->on_unknown)
 				{