#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(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue