diff --git a/game/modules/tome/data/general/objects/boss-artifacts.lua b/game/modules/tome/data/general/objects/boss-artifacts.lua
index b42137e6bdfd46159a66c4aefd14d116af1d8b57..e0e47b34140a6fba307cfa792b1ab8572a796b0d 100644
--- a/game/modules/tome/data/general/objects/boss-artifacts.lua
+++ b/game/modules/tome/data/general/objects/boss-artifacts.lua
@@ -594,7 +594,7 @@ newEntity{ base = "BASE_AMULET",
 newEntity{ define_as = "RUNED_SKULL",
 	power_source = {arcane=true},
 	unique = true,
-	type = "gem", subtype="red",
+	type = "gem", subtype="red", image = "object/skeleton_mage_skull.png",
 	unided_name = "human skull",
 	name = "Runed Skull",
 	display = "*", color=colors.RED,
diff --git a/game/modules/tome/data/zones/sandworm-lair/objects.lua b/game/modules/tome/data/zones/sandworm-lair/objects.lua
index efdf1cc59af48d723a85e1c91e82602ef317d4d1..964a66c32d7307bb7c6710c5e6df4addd3820d19 100644
--- a/game/modules/tome/data/zones/sandworm-lair/objects.lua
+++ b/game/modules/tome/data/zones/sandworm-lair/objects.lua
@@ -67,7 +67,7 @@ newEntity{
 	power_source = {nature=true},
 	define_as = "PUTRESCENT_POTION",
 	type = "corpse", subtype = "blood",
-	name = "Wyrm Bile", unique=true, unided_name="putrescent potion",
+	name = "Wyrm Bile", unique=true, unided_name="putrescent potion", image = "object/elixir_of_stoneskin.png",
 	display = "*", color=colors.VIOLET,
 	desc = [[A vial of thick, lumpy fluid. Who knows what this will do to you if you drink it?]],
 	cost = 3000,
diff --git a/premake4.lua b/premake4.lua
index 5ad300eca8c3d937576736e11f0327c374fbf47e..bedb9a2d380f0aa1f2c084fdb6582a873a7197c5 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -45,10 +45,13 @@ configuration "windows"
 		"/e/apps/mingw/include/GL",
 	}
 
+configuration "macosx"
+	buildoptions { "-pagezero_size 10000", "-image_base 100000000" }
+
 configuration "Debug"
 	defines { }
 	flags { "Symbols" }
-	buildoptions { "-ggdb", "-pagezero_size 10000", "-image_base 100000000" }
+	buildoptions { "-ggdb" }
 	targetdir "bin/Debug"
 	if _OPTIONS.luaassert then defines {"LUA_USE_APICHECK"} end
 	if _OPTIONS.pedantic then buildoptions { "-Wall" } end