diff --git a/mods/player_textures/README.txt b/mods/player_textures/README.txt deleted file mode 100644 index ffd9dc149..000000000 --- a/mods/player_textures/README.txt +++ /dev/null @@ -1,15 +0,0 @@ -Player Textures Mod for Minetest -================================ - -This mod allows players to use different textures. Just place the texture in -the player_textures/textures/ folder like this: -player_.png -and the player with the name will have this textures. - -License of source code: ------------------------ -WTFPL - -License of the example textures: --------------------------------- -WTFPL diff --git a/mods/player_textures/depends.txt b/mods/player_textures/depends.txt deleted file mode 100644 index 4ad96d515..000000000 --- a/mods/player_textures/depends.txt +++ /dev/null @@ -1 +0,0 @@ -default diff --git a/mods/player_textures/init.lua b/mods/player_textures/init.lua deleted file mode 100644 index d7a5b4cfa..000000000 --- a/mods/player_textures/init.lua +++ /dev/null @@ -1,10 +0,0 @@ -minetest.register_on_joinplayer(function(player) - local filename = minetest.get_modpath("player_textures").."/textures/player_"..player:get_player_name() - local f = io.open(filename..".png") - if f then - f:close() - player:set_properties({ - textures = {"player_"..player:get_player_name()..".png", "player_"..player:get_player_name().."_back.png"}, - }) - end -end) diff --git a/mods/player_textures/textures/player_Warashperbury.png b/mods/player_textures/textures/player_Warashperbury.png deleted file mode 100644 index 2ad18bb05..000000000 Binary files a/mods/player_textures/textures/player_Warashperbury.png and /dev/null differ diff --git a/mods/player_textures/textures/player_davedevils.png b/mods/player_textures/textures/player_davedevils.png deleted file mode 100644 index 3d22b5971..000000000 Binary files a/mods/player_textures/textures/player_davedevils.png and /dev/null differ diff --git a/mods/player_textures/textures/player_singleplayer.png b/mods/player_textures/textures/player_singleplayer.png deleted file mode 100644 index 3d22b5971..000000000 Binary files a/mods/player_textures/textures/player_singleplayer.png and /dev/null differ