Fix für Soundboards

This commit is contained in:
Akamaru 2015-11-13 20:51:12 +01:00
parent 7e06e017ee
commit 66ff88cc7f
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ local function run(msg, matches)
return "Nichts gefunden!\nSicher, dass "..matches[1].." existiert?"
else
print('Sende Sound')
send_document(receiver, file, rmtmp_cb, cb_extra)
send_audio(receiver, file, rmtmp_cb, cb_extra)
end
end

View File

@ -17,8 +17,8 @@ local function run(msg, matches)
if not file then
return "Nichts gefunden!\nSicher, dass "..matches[1].." existiert?"
else
print('Sende Datei')
send_document(receiver, file, rmtmp_cb, cb_extra)
print('Sende Sound')
send_audio(receiver, file, rmtmp_cb, cb_extra)
end
end