Fix build issue regarding const expressions
The char pointers used for the text in the skill gui were originally const constexpr, but were changed to only const after feedback while merging. This breaks compilation, since constexpr does not imply const anymore after C++17 (source)
Reverting the change fixes compilation. Whether we should instead use const std::string
, is another topic.