diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rbot/core/remote.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/core/remote.rb b/lib/rbot/core/remote.rb index 2d39d769..0cefae26 100644 --- a/lib/rbot/core/remote.rb +++ b/lib/rbot/core/remote.rb @@ -136,7 +136,7 @@ class Bot raise "Botmodule #{botmodule.name} tried to unmap #{tmpl.inspect} that was handled by #{tmpl.botmodule}" unless tmpl.botmodule == botmodule.name debug "Unmapping #{tmpl.inspect}" @templates[handle] = nil - @templates.clear unless @templates.nitems > 0 + @templates.clear unless @templates.compact.size > 0 end # We redefine the handle() method from MessageMapper, taking into account |