From 453e96025c4f78888e11f8da85fbdb78245e23f9 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 29 十二月 2025 02:36:23 +0800
Subject: [PATCH] 351 【内政】红颜系统
---
Main/System/KnapSack/BackpackData.cs | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Main/System/KnapSack/BackpackData.cs b/Main/System/KnapSack/BackpackData.cs
index 5dac9ab..464b65c 100644
--- a/Main/System/KnapSack/BackpackData.cs
+++ b/Main/System/KnapSack/BackpackData.cs
@@ -11,13 +11,13 @@
public int id;
public long countEx;
public int quality;
- public int bind; //缁戝畾 鎴栬�� 鎷嶅崠 浜ゆ槗
+ public int useType; //鐢ㄩ�斿畾涔夛細0 鏃� 1 棰勭暀 2 绾㈤澧炲姞
public Item(int _id, long _count)
{
this.id = _id;
this.quality = 0;
- this.bind = 0;
+ this.useType = 0;
this.countEx = _count;
}
@@ -26,15 +26,15 @@
{
this.id = _id;
this.quality = _quality;
- this.bind = 0;
+ this.useType = 0;
this.countEx = _count;
}
- public Item(int _id, long _count, int _bind = 0, int _quality = 0)
+ public Item(int _id, long _count, int _useType = 0, int _quality = 0)
{
this.id = _id;
this.quality = _quality;
- this.bind = _bind;
+ this.useType = _useType;
this.countEx = _count;
}
--
Gitblit v1.8.0