Skip to content
Snippets Groups Projects
Commit c6dbd611 authored by DarkGod's avatar DarkGod
Browse files

When pressing space to talk without being subscribed to any channel, a warning is displayed

parent 5c6b5a82
No related branches found
No related tags found
No related merge requests found
......@@ -444,7 +444,8 @@ function _M:talkBox(on_end, only_friends)
if not profile.auth then return end
local Talkbox = require "engine.dialogs.Talkbox"
local d = Talkbox.new(self, on_end, only_friends)
if not d.nobody then game:registerDialog(d) end
if not d.nobody then game:registerDialog(d)
else game.log("#CRIMSON#You are not subscribed to any channel, you can change that in the game options.#LAST#") end
self:updateChanList()
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment