[Bug Fix] Fix MIR LDoN Theme Items on LDoN Merchants (#2971)

# Notes
- These items weren't showing as MIR due to this condition being typo'd in https://github.com/EQEmu/Server/pull/1611/files.
This commit is contained in:
Alex King 2023-02-19 21:51:37 -05:00 committed by GitHub
parent 7bc00cb466
commit df499b22ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2144,7 +2144,7 @@ void Client::Handle_OP_AdventureMerchantRequest(const EQApplicationPacket *app)
theme = LDoNThemes::RUJ;
} else if (item->LDoNTheme & LDoNThemeBits::MMCBit) {
theme = LDoNThemes::MMC;
} else if (item->LDoNTheme & LDoNThemeBits::RUJBit) {
} else if (item->LDoNTheme & LDoNThemeBits::MIRBit) {
theme = LDoNThemes::MIR;
} else if (item->LDoNTheme & LDoNThemeBits::GUKBit) {
theme = LDoNThemes::GUK;