From cec8b67d82c2c2c1662d55c818c4a46bcc0487db Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期一, 25 八月 2025 17:36:02 +0800
Subject: [PATCH] 125 【战斗】战斗系统 战斗技能
---
Main/System/CustomizedGift/CustomizedGiftModel.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Main/System/CustomizedGift/CustomizedGiftModel.cs b/Main/System/CustomizedGift/CustomizedGiftModel.cs
index 5f70623..e1e8096 100644
--- a/Main/System/CustomizedGift/CustomizedGiftModel.cs
+++ b/Main/System/CustomizedGift/CustomizedGiftModel.cs
@@ -14,7 +14,7 @@
public const int activityType = (int)OpenServerActivityCenter.ActivityType.AT_Activity2;
public const int activityID = (int)NewDayActivityID.CustomizedGiftWin;
- public static Operation operaType = Operation.default35;
+ public static OperationType operaType = OperationType.default35;
public int actNum; //瀵瑰簲鐣岄潰
public event Action UpdateRechargeGiftActEvent;
@@ -56,7 +56,7 @@
}
}
- private void OperationEndEvent(Operation type, int state)
+ private void OperationEndEvent(OperationType type, int state)
{
if (type == operaType && state == 0)
{
@@ -68,7 +68,7 @@
}
}
- private void OperationAdvanceEvent(Operation type)
+ private void OperationAdvanceEvent(OperationType type)
{
if (type == operaType)
{
@@ -79,7 +79,7 @@
}
}
- private void OperationStartEvent(Operation type, int state)
+ private void OperationStartEvent(OperationType type, int state)
{
if (type == operaType && state == 0)
{
--
Gitblit v1.8.0