Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yasirarism authored Sep 27, 2024
1 parent 860f587 commit 661b21e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misskaty/plugins/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ async def tebak_lontong(client, message):
async def tebak_kata(client, message):
getdata = await fetch.get("https://yasirapi.eu.org/tebakkata")
if getdata.status_code != 200:
return await message.reply_msg("Gagal Mendapatkan data tebak lontong.")
return await message.reply_msg("Gagal Mendapatkan data tebak kata.")
result = getdata.json()
soal = result['soal']
correct_answer = result['jawaban']
Expand All @@ -301,7 +301,7 @@ async def tebak_kata(client, message):
async def tebaktebakan(client, message):
getdata = await fetch.get("https://yasirapi.eu.org/tebaktebakan")
if getdata.status_code != 200:
return await message.reply_msg("Gagal Mendapatkan data tebak lontong.")
return await message.reply_msg("Gagal Mendapatkan data tebak tebakan.")
result = getdata.json()
soal = result['soal']
correct_answer = result['jawaban']
Expand Down

0 comments on commit 661b21e

Please sign in to comment.