You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
416 B
Lua

return function(result)
return {
messages = {
affirmative = {
standard = "{{placeholder}} with result {{result}} in affirmative mode"
},
negative = {
standard = "{{placeholder}} with result {{result}} in negative mode"
}
},
apply = function(context)
context.result = result
end
}
end