Skip to content

Instantly share code, notes, and snippets.

@Jordach

Jordach/.lua Secret

Created November 28, 2017 13:20
Show Gist options
  • Save Jordach/ec18696a5664923e1b6fea0bd5097255 to your computer and use it in GitHub Desktop.
Save Jordach/ec18696a5664923e1b6fea0bd5097255 to your computer and use it in GitHub Desktop.
minetest.register_on_joinplayer(function(player)
for k, v in pairs(player_names) do
if v == player:get_player_name() then
player:get_inventory():set_stack("hand", 1, "newhand:" .. v)
else
player:get_inventory():set_stack("hand", 1, "newhand:_default_")
end
end
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment