diff --git a/emojireplace.py b/emojireplace.py index f5a3a23050..74aef89719 100644 --- a/emojireplace.py +++ b/emojireplace.py @@ -37,9 +37,10 @@ for emoji in discord_emojis: full_discord_path = os.path.join(extracted_discord_path, emoji) # Copy and overwrite the discord emojis with the mutantstd alternatives + print("Copying {} to {}.".format(full_mutstd_path, full_discord_path)) shutil.copyfile(full_mutstd_path, full_discord_path) - print("Replaced {} emoji.".format(full_mutstd_name)) + print("Replaced {} emoji.".format(emoji)) replace_counter += 1 print("Done, {} emojis replaced.".format(replace_counter))