@@ -6,6 +6,24 @@ namespace WowPacketParserModule.V11_0_0_55666.Parsers
66{
77 public static class HousingHandler
88 {
9+ /*
10+ Access Flags Combine
11+ local HouseAccessFlags =
12+ {
13+ Enum.HouseSettingFlags.HouseAccessNeighbors,
14+ Enum.HouseSettingFlags.HouseAccessGuild,
15+ Enum.HouseSettingFlags.HouseAccessFriends,
16+ Enum.HouseSettingFlags.HouseAccessParty,
17+ };
18+
19+ local PlotAccessFlags =
20+ {
21+ Enum.HouseSettingFlags.PlotAccessNeighbors,
22+ Enum.HouseSettingFlags.PlotAccessGuild,
23+ Enum.HouseSettingFlags.PlotAccessFriends,
24+ Enum.HouseSettingFlags.PlotAccessParty,
25+ };
26+ */
927
1028 [ Parser ( Opcode . CMSG_HOUSING_DECOR_CATALOG_CREATE_SEARCHER ) ]
1129 public static void HousingDecorCatalogCreateSearcher ( Packet packet )
@@ -179,6 +197,15 @@ public static void HandleHousingDecorCommitDyesForSelectedDecorResponse(Packet p
179197 packet . ReadByteE < HousingResult > ( "Result" ) ;
180198 }
181199
200+ [ Parser ( Opcode . SMSG_HOUSING_DECOR_MOVE_DECOR_RESPONSE ) ]
201+ public static void HandleHousingDecorMoveDecorResponse ( Packet packet )
202+ {
203+ packet . ReadPackedGuid128 ( "PlayerGUID" ) ;
204+ packet . ReadUInt32 ( "Field_09" ) ;
205+ packet . ReadPackedGuid128 ( "DecorGUID" ) ;
206+ packet . ReadByteE < HousingResult > ( "Result" ) ;
207+ packet . ReadByte ( "Field_26" ) ;
208+ }
182209
183210 [ Parser ( Opcode . SMSG_HOUSING_DECOR_REMOVE_PLACED_DECOR_ENTRY_RESPONSE ) ]
184211 public static void HandleHousingDecorRemovePlacedDecorEntryResponse ( Packet packet )
0 commit comments