Skip to content

Commit

Permalink
fix: writing correction
Browse files Browse the repository at this point in the history
  • Loading branch information
omarcopires committed Mar 22, 2024
1 parent e8b5bef commit 9a70be2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data-otservbr-global/npc/emperor_kruzak.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ local function creatureSayCallback(npc, creature, type, message)
npcHandler:setTopic(playerId, 2)
end
elseif (MsgContains(message, "armor")) and npcHandler:getTopic(playerId) == 2 then
npcHandler:say("So you wold like to donate 500.000.000 gold pieces which in return will entitle you to wear a unique armor?", npc, creature)
npcHandler:say("So you would like to donate 500.000.000 gold pieces which in return will entitle you to wear a unique armor?", npc, creature)
npcHandler:setTopic(playerId, 3)
elseif (MsgContains(message, "helmet")) and npcHandler:getTopic(playerId) == 2 then
npcHandler:say("So you would like to donate 250.000.000 gold pieces which in return will entitle you to wear unique helmet?", npc, creature)
Expand Down
2 changes: 1 addition & 1 deletion data-otservbr-global/npc/king_tibianus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ local function creatureSayCallback(npc, creature, type, message)
end
end
elseif (MsgContains(message, "armor")) and npcHandler:getTopic(playerId) == 2 then
npcHandler:say("So you wold like to donate 500.000.000 gold pieces which in return will entitle you to wear a unique armor?", npc, creature)
npcHandler:say("So you would like to donate 500.000.000 gold pieces which in return will entitle you to wear a unique armor?", npc, creature)
npcHandler:setTopic(playerId, 3)
elseif (MsgContains(message, "helmet")) and npcHandler:getTopic(playerId) == 2 then
npcHandler:say("So you would like to donate 250.000.000 gold pieces which in return will entitle you to wear unique helmet?", npc, creature)
Expand Down
2 changes: 1 addition & 1 deletion data-otservbr-global/npc/queen_eloise.lua
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ local function creatureSayCallback(npc, creature, type, message)
npcHandler:setTopic(playerId, 2)
end
elseif (MsgContains(message, "armor")) and npcHandler:getTopic(playerId) == 2 then
npcHandler:say("So you wold like to donate 500.000.000 gold pieces which in return will entitle you to wear a unique armor?", npc, creature)
npcHandler:say("So you would like to donate 500.000.000 gold pieces which in return will entitle you to wear a unique armor?", npc, creature)
npcHandler:setTopic(playerId, 3)
elseif (MsgContains(message, "helmet")) and npcHandler:getTopic(playerId) == 2 then
npcHandler:say("So you would like to donate 250.000.000 gold pieces which in return will entitle you to wear unique helmet?", npc, creature)
Expand Down

0 comments on commit 9a70be2

Please sign in to comment.