Add the dungeon ID to the transfer scene packet

This commit is contained in:
KingRainbow44
2023-05-07 02:56:40 -04:00
parent 935de3f8e7
commit 24ad6bf478
3 changed files with 11 additions and 3 deletions

View File

@@ -100,6 +100,10 @@ public class PacketPlayerEnterSceneNotify extends BasePacket {
+ "-"
+ 18402);
if (teleportProperties.getDungeonId() != 0) {
proto.setDungeonId(teleportProperties.getDungeonId());
}
this.setData(proto);
}
}