Spawner: Nearby plotmarkers are now scanned for all mg_villages:plotmarkers.

Places: Usable nodes now include workplaces
Small bug fixes.
Relationships: Small bugfix with gift item response.
Occupations: Add work node descriptions.
Experimental "priest" occupation.
This commit is contained in:
Hector Franqui
2017-08-28 15:43:57 -04:00
parent 0ddb30c0f9
commit 59bb430e62
5 changed files with 117 additions and 13 deletions

View File

@ -482,7 +482,7 @@ local function show_receive_gift_reaction(self, item_name, modifier, clicker_nam
npc.relationships.GIFT_ITEM_LIKED,
self.sex,
phase)
npc.chat(self.npc_name, clicker_name, message_to_send)
npc.chat(self.npc_name, clicker_name, message_to_send.responses[1])
-- Disliked items reactions
elseif modifier < 0 then
effect({x = pos.x, y = pos.y + 1, z = pos.z}, 8, "default_item_smoke.png")
@ -492,7 +492,7 @@ local function show_receive_gift_reaction(self, item_name, modifier, clicker_nam
npc.relationships.GIFT_ITEM_RESPONSE,
npc.relationships.GIFT_ITEM_DISLIKED,
self.sex)
npc.chat(self.npc_name, clicker_name, message_to_send)
npc.chat(self.npc_name, clicker_name, message_to_send.responses[1])
end
end