Compare commits

...

2 Commits

Author SHA1 Message Date
Akkadius 690301e80d [Release] 22.30.2 - Hotfix perl loading 2023-10-26 16:23:55 -05:00
Akkadius 1887e48b76 Revert "[Perl] Reload perl quests on zone bootup (#3648)"
This reverts commit 0bbfcf7adc.
2023-10-26 16:21:06 -05:00
5 changed files with 8 additions and 8 deletions
+6
View File
@@ -1,3 +1,9 @@
## [22.30.2] - 10/26/2023
### Fixes
Revert Perl regression in #3648 causing scripts to not reliably initialize on zone bootup. @Akkadius 2023-10-26
## [22.30.1] - 10/24/2023 ## [22.30.1] - 10/24/2023
### Fixes ### Fixes
+1 -1
View File
@@ -25,7 +25,7 @@
// Build variables // Build variables
// these get injected during the build pipeline // these get injected during the build pipeline
#define CURRENT_VERSION "22.30.1-dev" // always append -dev to the current version for custom-builds #define CURRENT_VERSION "22.30.2-dev" // always append -dev to the current version for custom-builds
#define LOGIN_VERSION "0.8.0" #define LOGIN_VERSION "0.8.0"
#define COMPILE_DATE __DATE__ #define COMPILE_DATE __DATE__
#define COMPILE_TIME __TIME__ #define COMPILE_TIME __TIME__
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "eqemu-server", "name": "eqemu-server",
"version": "22.30.1", "version": "22.30.2",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/EQEmu/Server.git" "url": "https://github.com/EQEmu/Server.git"
-5
View File
@@ -205,11 +205,6 @@ PerlembParser::~PerlembParser()
safe_delete(perl); safe_delete(perl);
} }
void PerlembParser::Init()
{
ReloadQuests();
}
void PerlembParser::ReloadQuests() void PerlembParser::ReloadQuests()
{ {
try { try {
-1
View File
@@ -133,7 +133,6 @@ public:
virtual void AddVar(std::string name, std::string val); virtual void AddVar(std::string name, std::string val);
virtual std::string GetVar(std::string name); virtual std::string GetVar(std::string name);
virtual void Init() override;
virtual void ReloadQuests(); virtual void ReloadQuests();
virtual uint32 GetIdentifier() { return 0xf8b05c11; } virtual uint32 GetIdentifier() { return 0xf8b05c11; }