Browse Source

【BUG】MMO-20397: 扣血接口传正值 & 战士2技能buff时间异常

meijun 3 years ago
parent
commit
652b78a0c2

+ 2 - 2
Common/CommonAI/Zone/EventTrigger/EventAdapter.cs

@@ -331,11 +331,11 @@ namespace CommonAI.Zone.EventTrigger
 #endif
 			if (GlobalData.GAME_BS_TEST)
 			{
-				log.Warn("--调试场景" + this.ZoneAPI.UUID + ", " + this.ZoneAPI.GetSceneID() + ", 执行动作:" + this.Name);
+				log.Warn("--调试场景: " + this.ZoneAPI.UUID + ", " + this.ZoneAPI.GetSceneID() + ", 执行动作:" + this.Name);
 			}
 			else
 			{
-				log.Info("--调试场景" + this.ZoneAPI.UUID + ", " + this.ZoneAPI.GetSceneID() + ", 执行动作:" + this.Name);
+				log.Info("--调试场景: " + this.ZoneAPI.UUID + ", " + this.ZoneAPI.GetSceneID() + ", 执行动作:" + this.Name);
 			}
 
 			//if(this.Name.Equals("事件重置列表1") || this.Name.Equals("玉重置"))

+ 1 - 1
Common/CommonAI/Zone/ZoneEditor/EventTrigger/Actions.Units.cs

@@ -108,7 +108,7 @@ namespace CommonAI.Zone.ZoneEditor.EventTrigger
 				if(0 < hpPrecent && hpPrecent < 100)
 				{
 					int reduceHP = (int)(unit.MaxHP * 0.01f * (100 -hpPrecent));
-					unit.ReduceHP(-reduceHP, null, true, null, false, Data.DamageSource.Def, true);
+					unit.ReduceHP(reduceHP, null, true, null, false, Data.DamageSource.Def, true);
 				}
             }
         }

+ 1 - 1
XmdsVSPlugins/XmdsCommonSkill/Plugin/Skills/Warrior/Warrior_110200.cs

@@ -41,7 +41,7 @@ namespace XmdsCommonSkill.Plugin.Skills.Warrior
 			var buff2 = pack2.GetXmdsBuff(XmdsBuffProperties.XmdsBuffAbility.MoveSpeedDown) as XmdsBuff_MoveSpeedDown;
 			buff2.ChangePercent = -mValueSet5.GetValue(GetBaseSpeedDownLv(info), 1);
 			var bt2 = pack2.mBuffTemplate;
-			bt2.LifeTimeMS = mValueSet5.GetValue(GetBaseSpeedDownLv(info), 2) * 10;
+			bt2.LifeTimeMS = mValueSet5.GetValue(GetBaseSpeedDownLv(info), 2);
 			bt2.IsHarmful = true;
 			pack2.BindTemplateAndDispose();
 			unit.RegistSendBuff(bt2);