diff --git a/src/main/kotlin/quest/lengrand/plugins/Routing.kt b/src/main/kotlin/quest/lengrand/plugins/Routing.kt index 86b3aff..f6feb03 100644 --- a/src/main/kotlin/quest/lengrand/plugins/Routing.kt +++ b/src/main/kotlin/quest/lengrand/plugins/Routing.kt @@ -15,7 +15,7 @@ fun Application.configureRouting() { } get("/mood/{mood}"){ - call.respondText("Feeling ${call.parameters["mood"]}?") + call.respondText("Are you feeling ${call.parameters["mood"]}?") } } }