]> git.localhorst.tv Git - l2e.git/commitdiff
list type ID in wiki export
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 18 Oct 2012 20:48:44 +0000 (22:48 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 18 Oct 2012 20:48:44 +0000 (22:48 +0200)
src/loader/TypeDescription.cpp

index bcc480c6af6659ef6241c14bcf97a59ee01a68ad..f7c849be71a56ae9ecb45bf0de2c078dca37bcf2 100644 (file)
@@ -134,6 +134,8 @@ void TypeDescription::WriteSourceWiki(std::ostream &out) {
                const TypeDescription &td(Get(GetTypeId(*i)));
                out << "h3. " << td.TypeName() << endl << endl;
 
+               out << "Type ID: @" << td.TypeId() << "@" << endl << endl;
+
                if (td.Description()) {
                        out << td.Description() << endl << endl;
                }