1
This commit is contained in:
parent
45558a86fc
commit
f1461ec3bf
@ -1 +1,2 @@
|
||||
wmsj
|
||||
|
||||
wmsj
|
@ -507,6 +507,9 @@ namespace GameLogic
|
||||
// 特效播放完毕后销毁
|
||||
GameObject.Destroy(eGo);
|
||||
});
|
||||
|
||||
// 永久增加推力
|
||||
m_AllAddPush += ConfigSystem.Instance.Tables.TbSystemConfig.Get(1).YongJiuPower;
|
||||
}
|
||||
else if (buff.m_Id == 9)
|
||||
{
|
||||
|
@ -21,6 +21,7 @@ public sealed partial class SystemConfig : Luban.BeanBase
|
||||
ActorMaxScale = _buf.ReadInt();
|
||||
MaxPlayerId = _buf.ReadInt();
|
||||
InitPower = _buf.ReadInt();
|
||||
YongJiuPower = _buf.ReadInt();
|
||||
GmPassworld = _buf.ReadString();
|
||||
}
|
||||
|
||||
@ -50,6 +51,10 @@ public sealed partial class SystemConfig : Luban.BeanBase
|
||||
/// </summary>
|
||||
public readonly int InitPower;
|
||||
/// <summary>
|
||||
/// 永久推力
|
||||
/// </summary>
|
||||
public readonly int YongJiuPower;
|
||||
/// <summary>
|
||||
/// Gm解锁密码
|
||||
/// </summary>
|
||||
public readonly string GmPassworld;
|
||||
@ -69,6 +74,7 @@ public sealed partial class SystemConfig : Luban.BeanBase
|
||||
+ "ActorMaxScale:" + ActorMaxScale + ","
|
||||
+ "MaxPlayerId:" + MaxPlayerId + ","
|
||||
+ "InitPower:" + InitPower + ","
|
||||
+ "YongJiuPower:" + YongJiuPower + ","
|
||||
+ "GmPassworld:" + GmPassworld + ","
|
||||
+ "}";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user