From e7865fc3b0d304db578f6a606b7d8266acb82542 Mon Sep 17 00:00:00 2001 From: GajuszZOrod <103279149+GajuszZOrod@users.noreply.github.com> Date: Wed, 16 Oct 2024 09:04:10 +0200 Subject: [PATCH] Fix: usunieto spam wiadomosciami o papudze. (#217) Co-authored-by: GajuszZOrod --- Scripts/Nelderim/Items/ML/Parrot/PetParrot.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Nelderim/Items/ML/Parrot/PetParrot.cs b/Scripts/Nelderim/Items/ML/Parrot/PetParrot.cs index 10af975d..11e12f02 100644 --- a/Scripts/Nelderim/Items/ML/Parrot/PetParrot.cs +++ b/Scripts/Nelderim/Items/ML/Parrot/PetParrot.cs @@ -69,8 +69,8 @@ public override void OnStatsQuery( Mobile from ) { BaseHouse house = BaseHouse.FindHouseAt( this ); - if ( house != null && house.IsCoOwner( from ) ) - from.SendLocalizedMessage( 1072625 ); // As the house owner, you may rename this Parrot. + //if ( house != null && house.IsCoOwner( from ) ) + // from.SendLocalizedMessage( 1072625 ); // As the house owner, you may rename this Parrot. from.Send( new Server.Network.MobileStatus( from, this ) ); }