Browse Source

Update a little.

txlyre 2 years ago
parent
commit
1ab4f1733c
2 changed files with 6 additions and 4 deletions
  1. 4 3
      openkriemy.py
  2. 2 1
      utils.py

+ 4 - 3
openkriemy.py

@@ -60,9 +60,10 @@ async def on_message(event):
       try:
         target = await bot.get_entity(command.args[0])
       except (ValueError, IndexError):
-        await event.reply('Это действие нужно применить на кого-то!')
+        if action.kind != Kind.NO_TARGET_MAYBE:
+          await event.reply('Это действие нужно применить на кого-то!')
 
-        return 
+          return 
     else:
       reply_to = target
       target = target.sender
@@ -89,7 +90,7 @@ async def on_message(event):
 
   text = action.template.format(**{
     'initiator': initiator,
-    'target': get_link_to_user(target) if target else '?'
+    'target': get_link_to_user(target) if target else ''
   })
   
   gif = await get_random_gif(action)

+ 2 - 1
utils.py

@@ -34,6 +34,7 @@ class Kind(IntEnum):
   CANNOT_APPLY_TO_SELF = 0
   CAN_APPLY_TO_SELF    = 1
   NO_TARGET            = 2
+  NO_TARGET_MAYBE      = 3
 
 class WordKind(IntEnum):
   FIRST  = 0 # «год» / «день».
@@ -110,7 +111,7 @@ async def make_cache_filename(id, ext):
 def parse_kind(kind):
   kind = int(kind)
 
-  if kind < 0 or kind > 2:
+  if kind < 0 or kind > 3:
     raise ValueError
 
   return kind