#W# Added more doors to the AddDoorGump.

This commit is contained in:
WarrentyExpired 2026-08-07 09:46:14 -04:00
parent 624d04b84f
commit 4a188a6788

View file

@ -50,7 +50,7 @@ namespace Server.Gumps
}
else
{
AddBlueBack( 265, 145 );
AddBlueBack( 1010, 145 );
for ( int i = 0; i < m_Types.Length; ++i )
{
@ -104,10 +104,24 @@ namespace Server.Gumps
public static DoorInfo[] m_Types = new DoorInfo[]
{
new DoorInfo( typeof( MetalDoor ), 0x675 ),
new DoorInfo( typeof( MetalDoor2), 0x6C5 ),
new DoorInfo( typeof( RattanDoor ), 0x695 ),
new DoorInfo( typeof( DarkWoodDoor ), 0x6A5 ),
new DoorInfo( typeof( LightWoodDoor ), 0x6D5 ),
new DoorInfo( typeof( StrongWoodDoor ), 0x6E5 )
new DoorInfo( typeof( StrongWoodDoor ), 0x6E5 ),
new DoorInfo( typeof( LightWoodGate ), 0x839 ),
new DoorInfo( typeof( DarkWoodGate ), 0x866 ),
new DoorInfo( typeof( MediumWoodDoor ), 0x6B5 ),
new DoorInfo( typeof( SecretLightWoodDoor ), 0x344 ),
new DoorInfo( typeof( SecretWoodenDoor ), 0x334 ),
new DoorInfo( typeof( SecretDungeonDoor), 0x314 ),
new DoorInfo( typeof( SecretStoneDoor1 ), 0xE8 ),
new DoorInfo( typeof( SecretStoneDoor2 ), 0x324 ),
new DoorInfo( typeof( SecretStoneDoor3 ), 0x354 ),
new DoorInfo( typeof( IronGateShort ), 0x84C ),
new DoorInfo( typeof( IronGate ), 0x824 ),
new DoorInfo( typeof( BarredMetalDoor ), 0x685 ),
new DoorInfo( typeof( BarredMetalDoor2 ), 0x1FED ),
};
}
@ -122,4 +136,4 @@ namespace Server.Gumps
m_BaseID = baseID;
}
}
}
}