summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-12 22:18:22 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-13 21:53:25 +0100
commit1afbfb7e5fb5c133924ed8d376c6064575fc1c36 (patch)
treee5ec51d13fe20350a0d6a450bc92df4080f1691d /src/common
parent90fde5774f1e6ee1a3b649753fa7338e386a3c45 (diff)
downloadmanaserv-1afbfb7e5fb5c133924ed8d376c6064575fc1c36.tar.gz
manaserv-1afbfb7e5fb5c133924ed8d376c6064575fc1c36.tar.xz
manaserv-1afbfb7e5fb5c133924ed8d376c6064575fc1c36.zip
Fixed problems with map-bound world state variables
Due to a wrong primary key, which covered only the state name, it was impossible to use the same state name on different maps. This has now been fixed. Another problem was that the map variables were being included in the global variables, because the related database query did not filter on the map_id column properly. While fixing that, the map_id column now allows explicitly marking a state variable as global (with the value 0) or system variables (with the value -1). System variables are currently not accessible from scripts, but that could be changed later. Reviewed-by: Yohann Ferreira Reviewed-by: Erik Schilling
Diffstat (limited to 'src/common')
-rw-r--r--src/common/manaserv_protocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/manaserv_protocol.h b/src/common/manaserv_protocol.h
index a78c473..1ead90e 100644
--- a/src/common/manaserv_protocol.h
+++ b/src/common/manaserv_protocol.h
@@ -30,7 +30,7 @@ namespace ManaServ {
enum {
PROTOCOL_VERSION = 1,
- SUPPORTED_DB_VERSION = 19
+ SUPPORTED_DB_VERSION = 20
};
/**