Dialogues: Made multi-option dialogue less tall, negative option now normally spaced compared to the rest of the buttons.

Slight code cleanup.
This commit is contained in:
zorman2000
2016-12-14 20:14:34 -05:00
parent 0b0abc4706
commit da30d96395
2 changed files with 3 additions and 9 deletions

View File

@ -11,11 +11,6 @@ npc.MALE = "male"
npc.INVENTORY_ITEM_MAX_STACK = 99
mobs.npc_drops = {
"default:pick_steel", "mobs:meat", "default:sword_steel",
"default:shovel_steel", "farming:bread", "bucket:bucket_water"
}
---------------------------------------------------------------------------------------
-- General functions
---------------------------------------------------------------------------------------
@ -107,7 +102,6 @@ end
-- the item string or nil if not found
function npc.inventory_contains(self, item_name)
for key,value in pairs(self.inventory) do
minetest.log("Key: "..dump(key)..", value: "..dump(value))
if value ~= "" and string.find(value, item_name) then
return {slot=key, item_string=value}
end