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