From 9e1075a5cefbc3032c333368b5dec1e781c65e75 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Fri, 10 Sep 2010 23:59:30 +0000
Subject: [PATCH] Grushnak now correctly drops his Orb of Command

git-svn-id: http://svn.net-core.org/repos/t-engine4@1177 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/engines/default/engine/DebugConsole.lua         | 8 +++++---
 game/modules/tome/data/zones/grushnak-pride/npcs.lua | 1 +
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/game/engines/default/engine/DebugConsole.lua b/game/engines/default/engine/DebugConsole.lua
index 2c915f247b..1ed5774826 100644
--- a/game/engines/default/engine/DebugConsole.lua
+++ b/game/engines/default/engine/DebugConsole.lua
@@ -64,18 +64,20 @@ function _M:init()
 			if self.commands[self.com_sel] then
 				self.line = self.commands[self.com_sel]
 			end
+			self.changed = true
 		end,
 		_DOWN = function()
 			self.com_sel = util.bound(self.com_sel + 1, 1, #self.commands)
 			if self.commands[self.com_sel] then
 				self.line = self.commands[self.com_sel]
 			end
+			self.changed = true
 		end,
 		_ESCAPE = function()
 			game:unregisterDialog(self)
 		end,
 		_BACKSPACE = function()
-			self.line = self.line:sub(1, self.line:len() - 1)
+			self.line = self.line:sub(1, self.line:len() - 1) self.changed = true
 		end,
 		__TEXTINPUT = function(c)
 			self.line = self.line .. c
@@ -103,7 +105,7 @@ function _M:drawDialog(s, w, h)
 		i = i - 1
 		dh = dh - self.font:lineSkip()
 	end
-
+	self.changed = false
 end
 
 --- Scroll the zone
@@ -113,4 +115,4 @@ function _M:scrollUp(i)
 	if self.offset > #self.history - 1 then self.offset = #self.history - 1 end
 	if self.offset < 0 then self.offset = 0 end
 	self.changed = true
-end
\ No newline at end of file
+end
diff --git a/game/modules/tome/data/zones/grushnak-pride/npcs.lua b/game/modules/tome/data/zones/grushnak-pride/npcs.lua
index 578dd75220..8467054f72 100644
--- a/game/modules/tome/data/zones/grushnak-pride/npcs.lua
+++ b/game/modules/tome/data/zones/grushnak-pride/npcs.lua
@@ -56,6 +56,7 @@ newEntity{ base="BASE_NPC_ORC_GRUSHNAK", define_as = "GRUSHNAK",
 --		{type="jewelry", subtype="ring", ego_chance=100, autoreq=true},
 		{type="jewelry", subtype="ring", defined="PRIDE_GLORY", autoreq=true},
 	},
+	resolvers.drops{chance=100, nb=1, {defined="ORB_DESTRUCTION"} },
 	resolvers.drops{chance=100, nb=5, {ego_chance=100} },
 
 	make_escort = {
-- 
GitLab