diff options
Diffstat (limited to 'src/mmo')
-rw-r--r-- | src/mmo/skill.t.hpp | 3 | ||||
-rw-r--r-- | src/mmo/version.cpp | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/mmo/skill.t.hpp b/src/mmo/skill.t.hpp index d0e3926..21e4059 100644 --- a/src/mmo/skill.t.hpp +++ b/src/mmo/skill.t.hpp @@ -77,6 +77,9 @@ enum class SkillID : uint16_t // TODO: Remove these! NEGATIVE = 0xffff, ZERO = 0x0000, + // this is probably the remains of the 'basic' skill, + // which has since been partially split into emote, trade, and party, + // but the confusion is caused by the fact that it also covered attacks. ONE = 0x0001, // Basic skills. diff --git a/src/mmo/version.cpp b/src/mmo/version.cpp index 56e21dc..aec4e73 100644 --- a/src/mmo/version.cpp +++ b/src/mmo/version.cpp @@ -77,5 +77,5 @@ bool extract(XString str, Version *vers) LString VERSION_INFO_HEADER = "This server code consists of Free Software under GPL3&AGPL3"_s; LString VERSION_INFO_COMMIT = "This is commit " VERSION_HASH ", also known as " VERSION_FULL ""_s; LString VERSION_INFO_NUMBER = "The version is " VERSION_STRING ""_s; -LString VERSION_INFO_URL = "For source, see " VENDOR_SOURCE ""_s; +LString VERSION_INFO_URL = "For source, see [@@" VENDOR_SOURCE "|" VENDOR_SOURCE "@@]"_s; } // namespace tmwa |