Upgrades code style - First batch (#22)

This commit is contained in:
Kamron Batman 2018-08-14 06:16:50 +08:00 • committed by GitHub
parent 8ee42c8ea2
commit 632e8b4757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1834 changed files with 10245 additions and 10437 deletions

View file

@ -7,24 +7,24 @@ namespace Server.Gumps
{
public class ConfirmBreakCrystalGump : BaseConfirmGump
{
public override int LabelNumber{ get{ return 1075084; } } // This statuette will be destroyed when its trapped creature is summoned. The creature will be bonded to you but will disappear if released. <br><br>Do you wish to proceed?
public override int LabelNumber => 1075084; // This statuette will be destroyed when its trapped creature is summoned. The creature will be bonded to you but will disappear if released. <br><br>Do you wish to proceed?
private BaseImprisonedMobile m_Item;
public ConfirmBreakCrystalGump( BaseImprisonedMobile item ) : base()
public ConfirmBreakCrystalGump( BaseImprisonedMobile item )
{
m_Item = item;
}
public override void Confirm( Mobile from )
{
{
if ( m_Item == null || m_Item.Deleted )
return;
BaseCreature summon = m_Item.Summon;
if ( summon != null )
{
{
if ( !summon.SetControlMaster( from ) )
{
summon.Delete();
@ -32,24 +32,24 @@ namespace Server.Gumps
else
{
from.SendLocalizedMessage( 1049666 ); // Your pet has bonded with you!
summon.MoveToWorld( from.Location, from.Map );
summon.IsBonded = true;
summon.Skills.Wrestling.Base = 100;
summon.Skills.Tactics.Base = 100;
summon.Skills.MagicResist.Base = 100;
summon.Skills.Anatomy.Base = 100;
Effects.PlaySound( summon.Location, summon.Map, summon.BaseSoundID );
Effects.SendLocationParticles( EffectItem.Create( summon.Location, summon.Map, EffectItem.DefaultDuration ), 0x3728, 1, 10, 0x26B6 );
m_Item.Release( from, summon );
m_Item.Delete();
}
}
}
}
}
}