diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rbot/core/auth.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbot/core/auth.rb b/lib/rbot/core/auth.rb index f32dad1c..07cc83f4 100644 --- a/lib/rbot/core/auth.rb +++ b/lib/rbot/core/auth.rb @@ -359,8 +359,8 @@ class AuthModule < CoreBotModule case cmd.to_sym
when :show
- return _("you can't see the properties of %{user}") %
- {:user => butarget.username} if botuser != butarget &&
+ return m.reply(_("you can't see the properties of %{user}") %
+ {:user => butarget.username}) if botuser != butarget &&
!botuser.permit?("auth::show::other")
case splits[1]
|