c/p typo in commands.lua

This commit is contained in:
Luke aka SwissalpS 2024-07-19 23:13:56 +02:00 committed by GitHub
parent cc2da8a2a6
commit 34781935d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -66,11 +66,11 @@ minetest.register_chatcommand("xcompat_test_sounds", {
for gameid, game_sounds in pairs(sounds) do
for sound, _ in pairs(reference_sounds) do
if not game_sounds[sound] then
minetest.chat_send_player(name, "Missing material: "..sound.." in game: "..gameid)
minetest.chat_send_player(name, "Missing sound: "..sound.." in game: "..gameid)
end
end
end
minetest.chat_send_player(name, "Sounds test complete")
end
})
})