diff --git a/game/modules/tome/data/general/objects/potions.lua b/game/modules/tome/data/general/objects/potions.lua
index 9169096dbba2f2437e5fd76821a7bbb911bad44c..e9cad187c8188034d24d3171bd088adc0bfd41fd 100644
--- a/game/modules/tome/data/general/objects/potions.lua
+++ b/game/modules/tome/data/general/objects/potions.lua
@@ -238,7 +238,7 @@ newEntity{ base = "BASE_POTION",
 		game.logSeen(who, "%s quaffs the slime juice. Yuck.", who.name:capitalize())
 		-- 1% chance of gaining slime mold powers
 		if rng.percent(1) then
-			who:learnTalentType("wild-gift/slime", false)
+			who:learnTalentType("wild-gift/slime", true)
 			game.logSeen(who, "%s is transformed by the slime mold juice.", who.name:capitalize())
 			game.logPlayer(who, "#00FF00#You gain an affinity for the molds. You can now learn new slime talents (press G).")
 		end