#W# Orcs are now StandardOrcs. All Overland Forts are spawned.
This commit is contained in:
parent
d68d106d0d
commit
969ae08702
8 changed files with 108 additions and 33 deletions
|
|
@ -101,7 +101,7 @@ namespace Server.Items
|
|||
else if ( typeof( PolarBear ) == c.Owner.GetType() ){ i = new TrophyPolarBear(); }
|
||||
else if ( typeof( FrostTroll ) == c.Owner.GetType() ){ i = new TrophyTroll(); }
|
||||
else if ( typeof( Troll ) == c.Owner.GetType() ){ i = new TrophyTroll(); }
|
||||
else if ( typeof( Orc ) == c.Owner.GetType() ){ i = new TrophyOrc(); }
|
||||
else if ( typeof( StandardOrc ) == c.Owner.GetType() ){ i = new TrophyOrc(); }
|
||||
else if ( typeof( OrcCaptain ) == c.Owner.GetType() ){ i = new TrophyOrc(); }
|
||||
else if ( typeof( OrcishLord ) == c.Owner.GetType() ){ i = new TrophyOrc(); }
|
||||
else if ( typeof( OrcishMage ) == c.Owner.GetType() ){ i = new TrophyOrc(); }
|
||||
|
|
@ -542,4 +542,4 @@ namespace Server.Items
|
|||
public override void Serialize( GenericWriter writer ){ base.Serialize( writer ); writer.Write( (int) 0 ); }
|
||||
public override void Deserialize( GenericReader reader ){ base.Deserialize( reader ); int version = reader.ReadInt(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ namespace Server.Items
|
|||
typeof( Ogre ),
|
||||
typeof( OgreLord ),
|
||||
typeof( OgreMagi ),
|
||||
typeof( Orc ),
|
||||
typeof( StandardOrc ),
|
||||
typeof( OrcCaptain ),
|
||||
typeof( OrcishLord ),
|
||||
typeof( OrcishMage ),
|
||||
|
|
@ -177,7 +177,7 @@ namespace Server.Items
|
|||
typeof( OgreMagi ),
|
||||
typeof( ArcticOgreLord ) ),
|
||||
new SlayerEntry( SlayerName.OrcSlaying,
|
||||
typeof( Orc ),
|
||||
typeof( StandardOrc ),
|
||||
typeof( OrcCaptain ),
|
||||
typeof( OrcishLord ),
|
||||
typeof( OrcishMage ) ),
|
||||
|
|
@ -664,4 +664,4 @@ namespace Server.Items
|
|||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue