|
From: <cn...@us...> - 2025-11-26 13:03:51
|
Revision: 1616
http://sourceforge.net/p/seq/svn/1616
Author: cn187
Date: 2025-11-26 13:03:48 +0000 (Wed, 26 Nov 2025)
Log Message:
-----------
Bump max player level to 130 for Shattering of Ro
Modified Paths:
--------------
showeq/trunk/src/everquest.h
showeq/trunk/src/interface.cpp
Modified: showeq/trunk/src/everquest.h
===================================================================
--- showeq/trunk/src/everquest.h 2025-11-12 22:42:08 UTC (rev 1615)
+++ showeq/trunk/src/everquest.h 2025-11-26 13:03:48 UTC (rev 1616)
@@ -161,6 +161,8 @@
#define PLAYER_CLASSES 16
#define PLAYER_RACES 15
+#define MAX_PLAYER_LEVEL 130
+
/*
** Item Packet Type
*/
Modified: showeq/trunk/src/interface.cpp
===================================================================
--- showeq/trunk/src/interface.cpp 2025-11-12 22:42:08 UTC (rev 1615)
+++ showeq/trunk/src/interface.cpp 2025-11-26 13:03:48 UTC (rev 1616)
@@ -2052,7 +2052,7 @@
m_levelSpinBox = new QSpinBox(this);
m_levelSpinBox->setObjectName("m_levelSpinBox");
m_levelSpinBox->setMinimum(1);
- m_levelSpinBox->setMaximum(125);
+ m_levelSpinBox->setMaximum(MAX_PLAYER_LEVEL);
m_levelSpinBox->setSingleStep(1);
QWidgetAction* levelSpinBoxAction = new QWidgetAction(m_charLevelMenu);
levelSpinBoxAction->setDefaultWidget(m_levelSpinBox);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|