diff --git a/app/Models/Texture.php b/app/Models/Texture.php index 4ccdb2b0..d9c989bd 100644 --- a/app/Models/Texture.php +++ b/app/Models/Texture.php @@ -9,16 +9,6 @@ class Texture extends Model public $primaryKey = 'tid'; public $timestamps = false; - public static function checkTextureOccupied($tid) - { - $skin_type_map = ["steve", "alex", "cape"]; - for ($i = 0; $i <= 2; $i++) { - if (Player::where('tid_'.$skin_type_map[$i], $tid)->count() > 0) - return true; - } - return false; - } - public function setPrivacy($public) { $this->public = $public ? "1" : "0";