diff --git a/app/Models/Player.php b/app/Models/Player.php index f6be096f..1d1d115d 100644 --- a/app/Models/Player.php +++ b/app/Models/Player.php @@ -26,11 +26,6 @@ class Player extends Model 'updated' => PlayerProfileUpdated::class, ]; - public function isBanned() - { - return $this->user->permission == User::BANNED; - } - public function user() { return $this->belongsTo(Models\User::class, 'uid');