Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Commit

Permalink
DGD and Klib version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
shentino committed Mar 12, 2010
1 parent e7564d2 commit e1618a3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mudlib/TESTED_VERSIONS
@@ -1 +1 @@
DGD 1.2.110-1.2.111
DGD 1.4-1.4.1
2 changes: 1 addition & 1 deletion mudlib/mud/include/phantasmal/version.h
@@ -1 +1 @@
#define PHANTASMAL_VERSION "0.020"
#define PHANTASMAL_VERSION "0.1.0"
12 changes: 6 additions & 6 deletions mudlib/mud/usr/System/initd.c
Expand Up @@ -87,11 +87,11 @@ static void create(varargs int clone)
}
}

if((major == 1 && minor < 3)) {
error("Need to upgrade to DGD version 1.3 or higher!");
} else if (major > 1 || (major == 1 && minor > 3)) {
if((major == 1 && minor < 4)) {
error("Need to upgrade to DGD version 1.4 or higher!");
} else if (major > 1 || (major == 1 && minor > 4)) {
DRIVER->message("This version of Phantasmal is not tested\n");
DRIVER->message("with DGD beyond 1.3.X. Please upgrade Phantasmal!\n");
DRIVER->message("with DGD beyond 1.4.X. Please upgrade Phantasmal!\n");
error("Upgrade Phantasmal!");
}

Expand All @@ -112,10 +112,10 @@ static void create(varargs int clone)
}
if(major < 1
|| (major == 1 && minor < 3)) {
error("Need to upgrade to DGD version 1.3 or higher!");
error("Need to upgrade to Kernel Library version 1.3 or higher!");
} else if (major > 1 || (major == 1 && minor > 3)) {
DRIVER->message("This version of Phantasmal is not tested\n");
DRIVER->message("with DGD beyond 1.3. Please upgrade Phantasmal!\n");
DRIVER->message("with Kernel Library beyond 1.3. Please upgrade Phantasmal!\n");
error("Upgrade Phantasmal!");
} else if (minor == 3 && patch > 0) {
DRIVER->message("This is a very new Kernel Library version, or at\n");
Expand Down

0 comments on commit e1618a3

Please sign in to comment.