This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-06-13 21:50:31 +08:00
parent 45558a86fc
commit f1461ec3bf
3 changed files with 11 additions and 1 deletions

View File

@ -1 +1,2 @@
wmsj 
wmsj

View File

@ -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)
{ {

View File

@ -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 + ","
+ "}"; + "}";
} }