diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index 12955a692c8deeaf096f43eab1618ebd646a953b..82fdcef2f99a5ed70b3767e84e20c32388a07142 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -1373,6 +1373,9 @@ function _M:setupCommands()
 			print("===============")
 		end end,
 		[{"_g","ctrl"}] = function() if config.settings.cheat then
+			self.player:addParticles(engine.Particles.new("shader_ring_rotating", 1, {rotation=0, radius=1.1, img="lightningshield"}, {type="lightningshield"}))
+
+do return end
 			local f, err = loadfile("/data/general/events/fearscape-portal.lua")
 			print(f, err)
 			setfenv(f, setmetatable({level=self.level, zone=self.zone}, {__index=_G}))
diff --git a/game/modules/tome/data/talents/misc/objects.lua b/game/modules/tome/data/talents/misc/objects.lua
index 4a7c91d88c321ffe7da18d9c7a0d21fef2e57400..45aaf1a442944dd09ac52a3b7f32944826025556 100644
--- a/game/modules/tome/data/talents/misc/objects.lua
+++ b/game/modules/tome/data/talents/misc/objects.lua
@@ -152,7 +152,12 @@ newTalent{
 		return true
 	end,
 	info = function(self, t)
-		return ([[Bring a damage-type-specific ward into being. The ward will fully negate as many attacks of its element as it has charges.]])
+		local xs = ""
+		for w, nb in pairs(self.wards) do
+			xs = xs .. (xs ~= "" and ", " or "") .. engine.DamageType.dam_def[w].name:capitalize() .. "(" .. tostring(nb) .. ")"
+		end
+		return ([[Bring a damage-type-specific ward into being. The ward will fully negate as many attacks of its element as it has charges.
+		You can activate the following wards: %s]]):format(xs)
 	end,
 }