From 91b1b695ab1e5fa3ce391ef06ad058cbbe45db0f Mon Sep 17 00:00:00 2001 From: Lejo Date: Sat, 30 Jun 2018 16:35:53 +0200 Subject: [PATCH] Make backward. --- api.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api.lua b/api.lua index d1fd10b..add2fa8 100644 --- a/api.lua +++ b/api.lua @@ -2,6 +2,10 @@ local storage = minetest.get_mod_storage() function skins.get_player_skin(player) + if player:get_attribute("skinsdb:skin_key") then + storage:set_string(player:get_player_name(), player:get_attribute("skinsdb:skin_key")) + player:set_attribute("skinsdb:skin_key", nil) + end local skin = storage:get_string(player:get_player_name()) return skins.get(skin) or skins.get(skins.default) end