Browse Source

Fix for discord bot. ruleset_details->rule_value was too small. Extended from 64->1024.

devn00b 2 tháng trước cách đây
mục cha
commit
791e48c857
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      EQ2/source/WorldServer/Rules/Rules.h

+ 2 - 2
EQ2/source/WorldServer/Rules/Rules.h

@@ -270,8 +270,8 @@ public:
 private:
 	int32 category;
 	int32 type;
-	char value[64];
-	char combined[256];
+	char value[1024];
+	char combined[2048];
 };
 
 class RuleSet {