This commit is contained in:
aozhiwei 2023-05-25 11:37:02 +08:00
parent 830125f7dc
commit 4c2c027bcc
3 changed files with 4 additions and 1 deletions

View File

@ -58,7 +58,7 @@ void Compose::IncNum()
if ((num_ + 1) % 3 == 0 && num_ < 9) { if ((num_ + 1) % 3 == 0 && num_ < 9) {
TakeOnWeapon(owner_->GetCurrWeapon()); TakeOnWeapon(owner_->GetCurrWeapon());
} }
if (num_ >= 0) { if (num_ >= 8) {
owner_->room->NotifyNewsTicker owner_->room->NotifyNewsTicker
(1, (1,
{ {

View File

@ -260,6 +260,7 @@ enum PropertyType_e
kPropPurpleStone = 48, kPropPurpleStone = 48,
kPropArmorShield = 49, kPropArmorShield = 49,
kPropEliminateTime = 50,
}; };
enum SkinSlot_e enum SkinSlot_e

View File

@ -226,6 +226,8 @@ message MFVec3
property_type: 49 property_type: 49
property_subtype: property_subtype:
value: max护甲值 value: max护甲值
property_type: 50 ()
value:
*/ */
message MFPropertyChg message MFPropertyChg
{ {