Time Nick Message 16:16 MinetestBot 02[git] 04qwerty123a2 -> 03minetest/minetest: Update mods_here.txt to mention installing mods via CDB (#11876) 13ec4a789 https://github.com/minetest/minetest/commit/ec4a789b4f56d7918b6c964e59b9903af5e17fcd (152022-04-29T16:15:19Z) 20:54 beanzilla If I wanted to have a alias for a chat command do I have to register both commands? 20:55 beanzilla I.E. `/island` can be shortened to `/is` 20:59 MTDiscord just point the one command at the others function 20:59 beanzilla Yup, just figured that out, thank you for the help. 21:00 MTDiscord minetest.register_chatcommand("newcommand", minetest.chatcommands["oldcommand"]) 21:02 beanzilla Ah, didn't think of that but that looks a lot nicer. Much thanks.