diff --git a/app/dmbot.f90 b/app/dmbot.f90 index a5ab9e2..d586dcc 100644 --- a/app/dmbot.f90 +++ b/app/dmbot.f90 @@ -289,13 +289,13 @@ function bot_reply_poke(bot_name) result(reply) character(len=*), intent(in), optional :: bot_name character(len=:), allocatable :: reply - if (.not. dm_string_is_present(bot_name)) then + if (dm_string_is_present(bot_name)) then reply = trim(bot_name) else reply = APP_NAME end if - reply = reply // ' is awake' + reply = reply // ' is online' end function bot_reply_poke function bot_reply_uptime() result(reply)