RightText support in the ship #143

Merged
jake merged 1 commits from andy/right-text2 into master 2023-11-14 15:09:49 -05:00

View File

@ -254,6 +254,7 @@ pub enum SendShipPacket {
TradeSuccessful(TradeSuccessful), TradeSuccessful(TradeSuccessful),
LobbyEvent(LobbyEvent), LobbyEvent(LobbyEvent),
LargeDialog(LargeDialog), LargeDialog(LargeDialog),
RightText(RightText),
} }
impl SendServerPacket for SendShipPacket { impl SendServerPacket for SendShipPacket {
@ -298,6 +299,7 @@ impl SendServerPacket for SendShipPacket {
SendShipPacket::TradeSuccessful(pkt) => pkt.as_bytes(), SendShipPacket::TradeSuccessful(pkt) => pkt.as_bytes(),
SendShipPacket::LobbyEvent(pkt) => pkt.as_bytes(), SendShipPacket::LobbyEvent(pkt) => pkt.as_bytes(),
SendShipPacket::LargeDialog(pkt) => pkt.as_bytes(), SendShipPacket::LargeDialog(pkt) => pkt.as_bytes(),
SendShipPacket::RightText(pkt) => pkt.as_bytes(),
} }
} }
} }