|
|
@@ -941,11 +941,11 @@ class TopLiveLayerFragment : TopLiveLayerClickFragment<TopLayerVm>(),
|
|
|
gift?.let {
|
|
|
if (it.giftType == GiftType.LUXURY_GIFT.type && LiveSession.getIsOpenSpecial()) {
|
|
|
bigGiftView.addGiftList(it)
|
|
|
- } else if (it.luckyMulti >= 500 && LiveSession.getIsOpenSpecial()) {
|
|
|
+ } else if (it.luckyMulti >= 500 && gift.roomId == viewModel.room?.roomId && LiveSession.getIsOpenSpecial()) {
|
|
|
val luckyGift: Gift? = GiftManager.allGiftList.find {
|
|
|
it.giftId == gift.giftId
|
|
|
}
|
|
|
- if (luckyGift != null && luckyGift.price > 5000) {
|
|
|
+ if (luckyGift != null) {
|
|
|
bigGiftView.addGiftList(it)
|
|
|
}
|
|
|
} else if (it.giftType == GiftType.BIG_GIFT.type && LiveSession.getIsOpenSpecial()) {
|