diff --git a/mods/MISC/mcl_commands/init.lua b/mods/MISC/mcl_commands/init.lua index 24373e37..aa3d78d7 100644 --- a/mods/MISC/mcl_commands/init.lua +++ b/mods/MISC/mcl_commands/init.lua @@ -8,6 +8,9 @@ else end local function handle_clear_command(giver, receiver) + if receiver == "" then + receiver = giver + end local receiverref = minetest.get_player_by_name(receiver) if receiverref == nil then return false, S("Player @1 does not exist.", receiver)