Fix chat message on map modification

master
HimbeerserverDE 2020-11-23 19:39:46 +01:00
parent 6851f7ed79
commit 77960de9cd
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ minetest.register_chatcommand("map_modify", {
end
end
bedwars.get_map_by_name(map_name)[key] = value or minetest.pos_to_string(minetest.get_player_by_name(name):get_pos())
return true, "Attribute changed to current position"
return true, "Attribute changed to " .. bedwars.get_map_by_name(map_name)[key]
end,
})