MP points set to 5 (technique)

This commit is contained in:
xeon 2024-03-29 14:28:44 +03:00
parent daf4507b34
commit be3ce8369a
2 changed files with 6 additions and 3 deletions

View file

@ -50,6 +50,9 @@ pub async fn on_get_cur_lineup_data_cs_req(
plane_id: 10001, plane_id: 10001,
name: String::from("Lineup 1"), name: String::from("Lineup 1"),
index: 0, index: 0,
leader_slot: 0,
mp: 5,
mp_max: 5,
avatar_list: globals::LINEUP avatar_list: globals::LINEUP
.iter() .iter()
.enumerate() .enumerate()

View file

@ -8132,15 +8132,15 @@ pub struct LineupInfo {
#[prost(bool, tag = "8")] #[prost(bool, tag = "8")]
pub is_virtual: bool, pub is_virtual: bool,
#[prost(uint32, tag = "7")] #[prost(uint32, tag = "7")]
pub hpammbapokf: u32, pub leader_slot: u32,
#[prost(uint32, repeated, tag = "10")] #[prost(uint32, repeated, tag = "10")]
pub hkbiidjenib: ::prost::alloc::vec::Vec<u32>, pub hkbiidjenib: ::prost::alloc::vec::Vec<u32>,
#[prost(bool, tag = "12")] #[prost(bool, tag = "12")]
pub pojohohkppa: bool, pub pojohohkppa: bool,
#[prost(uint32, tag = "6")] #[prost(uint32, tag = "6")]
pub bpkggopoppf: u32, pub mp_max: u32,
#[prost(uint32, tag = "9")] #[prost(uint32, tag = "9")]
pub njjbfegnhjc: u32, pub mp: u32,
} }
#[allow(clippy::derive_partial_eq_without_eq)] #[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)] #[derive(Clone, PartialEq, ::prost::Message)]