- [X] Adds a stop music packet - [X] Converts chat packets - [X] Breaks out chat code a little bit more - [X] Converts character statue animation packet - [X] Renames some folders to have spaces - [X] Organizes and consolidates incoming/outgoing packets for other content - [X] Fixes virtual checks
16 lines
448 B
C#
16 lines
448 B
C#
namespace Server.Misc
|
|
{
|
|
public static class ItemFixes
|
|
{
|
|
public static void Initialize()
|
|
{
|
|
// Missing NoShoot flags
|
|
TileData.ItemTable[0x2A0].Flags |= TileFlag.NoShoot;
|
|
TileData.ItemTable[0x3E0].Flags |= TileFlag.NoShoot;
|
|
TileData.ItemTable[0x3E1].Flags |= TileFlag.NoShoot;
|
|
|
|
// Incorrect height
|
|
TileData.ItemTable[0x34D2].Height = 0;
|
|
}
|
|
}
|
|
}
|