diff --git a/game/engines/default/engine/utils.lua b/game/engines/default/engine/utils.lua
index 2189a020dcf78d4ab0a1ce7bc67b1cb0022ae8a3..594341b58c8ccceb995c62519e369035c47d8795 100644
--- a/game/engines/default/engine/utils.lua
+++ b/game/engines/default/engine/utils.lua
@@ -1775,6 +1775,7 @@ end
 function core.fov.set_algorithm(val)
 	if type(val) == "string" and (string.lower(val) == "hex" or string.lower(val) == "hexagon") then
 		core.fov.set_vision_shape("hex")
+		core.fov.set_algorithm_base(0) -- TEMPORARY: don't default to a half-implemented FoV/LoS algorithm
 		is_hex = 1
 		return
 	end
@@ -1806,6 +1807,7 @@ function core.fov.set_vision_shape(val)
 	if type(val) ~= "number" then return end
 	if val == 7 then  -- hex
 		is_hex = 1
+		core.fov.set_algorithm_base(0) -- TEMPORARY: don't default to a half-implemented FoV/LoS algorithm
 	else
 		is_hex = 0
 	end
diff --git a/game/modules/tome/data/zones/sludgenest/npcs.lua b/game/modules/tome/data/zones/sludgenest/npcs.lua
index 0d0d68bfbec2090e5d5442b732d86f9ede5e57c0..95967da4c86452b6a871431acfc993eb37e0c42d 100644
--- a/game/modules/tome/data/zones/sludgenest/npcs.lua
+++ b/game/modules/tome/data/zones/sludgenest/npcs.lua
@@ -27,8 +27,8 @@ newEntity{ define_as = "CORRUPTED_OOZEMANCER",
 	type = "giant", subtype = "troll", unique = true,
 	name = "Corrupted Oozemancer",
 	display = "T", color=colors.VIOLET,
-	desc = [[This troll was once a pround defender of nature, now his corruption is spreading, eating away the forest around.]],
-	killer_message = "and disolved into acidic oozes",
+	desc = [[This blight-ridden troll was once a pround defender of Nature. His corruption is spreading, eating away at the forest around him.]],
+	killer_message = "and dissolved into acidic ooze",
 	level_range = {35, nil}, exp_worth = 2,
 	max_life = 250, life_rating = 18, fixed_rating = true,
 	equilibrium_regen = -10,