Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
fix mission 2 and 3
Browse files Browse the repository at this point in the history
  • Loading branch information
lfuelling committed May 6, 2020
1 parent b3b5eae commit 2c4f8dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/missions/mission2.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ AddEventHandler(eventNamespace .. blockedContact.namespace, function(anon, messa
if anon then
responseMsg = responseMsg .. _U('intro_msg_text_anon_obv')
end
if message == Locations.LifeInvader.DevPc.ip.address then
if message == Locations.LifeInvader.DevPc.machine.ip.address then
completeSecondMission()
secondMissionDone = true;
else
Expand Down
2 changes: 1 addition & 1 deletion client/missions/mission3.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ AddEventHandler(eventNamespace .. blockedContact.namespace, function(anon, messa
if anon then
responseMsg = responseMsg .. _U('intro_msg_text_anon_obv')
end
if message == Locations.Bank.VaultPc.ip.address then
if message == Locations.Bank.VaultPc.machine.ip.address then
completeThirdMission()
thirdMissionDone = true;
else
Expand Down

0 comments on commit 2c4f8dc

Please sign in to comment.