|
|
@@ -22,7 +22,8 @@ data class RoomGlobalBroadcastData(
|
|
|
@SerializedName("greedyBoxBroadcast") var greedyBoxBroadcast: Boolean = true,
|
|
|
@SerializedName("dragonTigerBroadcast") var dragonTigerBroadcast: Boolean = true,
|
|
|
@SerializedName("texasCowboyBroadcast") var texasCowboyBroadcast: Boolean = true,
|
|
|
- @SerializedName("russianRouletteBroadcast") var russianRouletteBroadcast: Boolean = true
|
|
|
+ @SerializedName("russianRouletteBroadcast") var russianRouletteBroadcast: Boolean = true,
|
|
|
+ @SerializedName("userEnableGiftEffect") var userEnableGiftEffect: Boolean = true,
|
|
|
)
|
|
|
|
|
|
|
|
|
@@ -43,9 +44,11 @@ interface RoomGlobalBroadcastItem : BaseListItemData {
|
|
|
|
|
|
enum class RoomGlobalBroadcastEnum(val id: Int, val textRes: Int) {
|
|
|
SEND_GIFT(1, R.string.room_send_gift_global_broadcast),
|
|
|
+
|
|
|
+ USER_ENABLE_GIFT_EFFECT(2, R.string.setting_room_setting_gift_effect),
|
|
|
VEHICLE_EFFECT(9, R.string.room_vehicle_effect_broadcast),
|
|
|
- LUCKY_FRUIT(2, R.string.room_lucky_fruit_global_broadcast),
|
|
|
- SLOT(3, R.string.room_slot_global_broadcast),
|
|
|
+ LUCKY_FRUIT(3, R.string.room_lucky_fruit_global_broadcast),
|
|
|
+ SLOT(4, R.string.room_slot_global_broadcast),
|
|
|
// LEVEL1_ROCKET(4, R.string.room_level1_rocket_global_broadcast),
|
|
|
// LEVEL2_ROCKET(5, R.string.room_level2_global_broadcast),
|
|
|
// LEVEL1_TREASURE(6, R.string.room_level1_treasure_global_broadcast),
|