Compare commits
3 Commits
feature/do
...
6f5b17147c
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f5b17147c | |||
| b7791fb9ce | |||
| 7e1dd28808 |
@@ -4,5 +4,4 @@ Decision.register({
|
|||||||
handle = function()
|
handle = function()
|
||||||
Util.go_to_screen_by_id("home")
|
Util.go_to_screen_by_id("home")
|
||||||
end,
|
end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ Decision.register({
|
|||||||
handle = function()
|
handle = function()
|
||||||
Util.go_to_screen_by_id("office")
|
Util.go_to_screen_by_id("office")
|
||||||
end,
|
end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ Decision.register({
|
|||||||
handle = function()
|
handle = function()
|
||||||
Util.go_to_screen_by_id("toilet")
|
Util.go_to_screen_by_id("toilet")
|
||||||
end,
|
end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ Decision.register({
|
|||||||
handle = function()
|
handle = function()
|
||||||
Util.go_to_screen_by_id("walking_to_home")
|
Util.go_to_screen_by_id("walking_to_home")
|
||||||
end,
|
end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ Decision.register({
|
|||||||
handle = function()
|
handle = function()
|
||||||
Util.go_to_screen_by_id("walking_to_office")
|
Util.go_to_screen_by_id("walking_to_office")
|
||||||
end,
|
end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ Decision.register({
|
|||||||
handle = function()
|
handle = function()
|
||||||
Situation.apply("drink_coffee")
|
Situation.apply("drink_coffee")
|
||||||
end,
|
end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,5 +2,4 @@ Decision.register({
|
|||||||
id = "play_button_mash",
|
id = "play_button_mash",
|
||||||
label = "Play Button Mash",
|
label = "Play Button Mash",
|
||||||
handle = function() Meters.hide() MinigameButtonMashWindow.start(WINDOW_GAME) end,
|
handle = function() Meters.hide() MinigameButtonMashWindow.start(WINDOW_GAME) end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,5 +2,4 @@ Decision.register({
|
|||||||
id = "play_ddr",
|
id = "play_ddr",
|
||||||
label = "Play DDR (Random)",
|
label = "Play DDR (Random)",
|
||||||
handle = function() Meters.hide() MinigameDDRWindow.start(WINDOW_GAME, nil) end,
|
handle = function() Meters.hide() MinigameDDRWindow.start(WINDOW_GAME, nil) end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,5 +2,4 @@ Decision.register({
|
|||||||
id = "play_rhythm",
|
id = "play_rhythm",
|
||||||
label = "Play Rhythm Game",
|
label = "Play Rhythm Game",
|
||||||
handle = function() Meters.hide() MinigameRhythmWindow.start(WINDOW_GAME) end,
|
handle = function() Meters.hide() MinigameRhythmWindow.start(WINDOW_GAME) end,
|
||||||
condition = function() return true end
|
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user