Skip to content

Commit

Permalink
Merge branch 'hotfix/add_state_calls'
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroHuerta committed Feb 26, 2017
2 parents 5ec2b6d + 1e988ba commit f2269a5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion trust_master.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

-- v0.2.1
-- === Setup === --

Settings:setCompareDimension(true, 1080)
Expand Down Expand Up @@ -62,6 +62,16 @@ function main()
state = unknown()
elseif (state == DISCONNECTED) then
state = disconnected()
elseif (state == ENERGY_RECOVERY) then
state = energy_recovery()
elseif (state == LAPIS_RESTORE) then
state = lapis_restore()
elseif (state == UNIT_DATA) then
state = unit_data()
elseif (state == DAILY_QUEST) then
state = daily_quest()
elseif (state == FRIEND_REQUEST) then
state = friend_request()
else
break
end
Expand Down

0 comments on commit f2269a5

Please sign in to comment.