Browse Source

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

devn00b 2 months ago
parent
commit
791e48c857
1 changed files with 2 additions and 2 deletions
  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 {