diff --git a/game/engine/dialogs/ShowEquipInven.lua b/game/engine/dialogs/ShowEquipInven.lua
index ff51b338a6239fd4b8b4aab3fdd9e56d69aa1feb..98438761e0c953db7604fbd85c143111412e670d 100644
--- a/game/engine/dialogs/ShowEquipInven.lua
+++ b/game/engine/dialogs/ShowEquipInven.lua
@@ -88,8 +88,15 @@ function _M:init(title, actor, filter, action)
 		EXIT = function() game:unregisterDialog(self) end,
 	})
 	self:mouseZones{
-		{ x=2, y=5, w=350, h=self.font_h*self.max, fct=function(button, x, y, xrel, yrel, tx, ty)
+		{ x=2, y=5, w=self.iw, h=self.font_h*self.max, fct=function(button, x, y, xrel, yrel, tx, ty)
+			if tx < self.iw / 2 then
+				self.list = self.equip_list
+			else
+				self.list = self.inven_list
+			end
 			self.sel = util.bound(self.scroll + math.floor(ty / self.font_h), 1, #self.list)
+			self.changed = true
+
 			if button == "left" then self:use()
 			elseif button == "right" then
 			end
diff --git a/game/engine/dialogs/ShowStore.lua b/game/engine/dialogs/ShowStore.lua
index 871d34ee1f1c4cfc7a586dbbc53506c4fbb174a1..df25894929ea1404175976db4a2529158998ae59 100644
--- a/game/engine/dialogs/ShowStore.lua
+++ b/game/engine/dialogs/ShowStore.lua
@@ -54,8 +54,14 @@ function _M:init(title, store_inven, actor_inven, store_filter, actor_filter, ac
 		EXIT = function() game:unregisterDialog(self) end,
 	})
 	self:mouseZones{
-		{ x=2, y=5, w=350, h=self.font_h*self.max, fct=function(button, x, y, xrel, yrel, tx, ty)
+		{ x=2, y=5, w=self.iw, h=self.font_h*self.max, fct=function(button, x, y, xrel, yrel, tx, ty)
+			if tx < self.iw / 2 then
+				self.list = self.store_list
+			else
+				self.list = self.actor_list
+			end
 			self.sel = util.bound(self.scroll + math.floor(ty / self.font_h), 1, #self.list)
+			self.changed = true
 			if button == "left" then self:use()
 			elseif button == "right" then
 			end
diff --git a/game/modules/tome/data/zones/sandworm-lair/objects.lua b/game/modules/tome/data/zones/sandworm-lair/objects.lua
index 416bacff6c74e549e9724773744b3b5349059048..ca4a86892eb9521f1fb71ae0584b9613997c33f1 100644
--- a/game/modules/tome/data/zones/sandworm-lair/objects.lua
+++ b/game/modules/tome/data/zones/sandworm-lair/objects.lua
@@ -35,7 +35,7 @@ newEntity{
 		game.logPlayer(who, "You have %d stat point(s) to spend. Press G to use them.", who.unused_stats)
 		game.logPlayer(who, "You have %d talent point(s) to spend. Press G to use them.", who.unused_talents)
 
-		who:learnTalentType("gift/sand", false)
+		who:learnTalentType("wild-gift/sand-drake", false)
 		game.logPlayer(who, "You are transformed by the heart of the Queen!.")
 		game.logPlayer(who, "#00FF00#You gain an affinity for sand. You can now learn new sand talents (press G).")