13 lines
243 B
Lua
13 lines
243 B
Lua
Decision.register({
|
|
id = "talk_to_truth",
|
|
label = function()
|
|
return "Talk to ????"
|
|
end,
|
|
condition = function()
|
|
return (CommuteGlitch.is_max())
|
|
end,
|
|
handle = function()
|
|
Discussion.start("norman_truth", "game")
|
|
end,
|
|
})
|