Fix dumps

This commit is contained in:
Zack Piispanen 2013-10-01 19:00:41 -04:00
parent c4bb414ab4
commit 23e06c803c
2 changed files with 7 additions and 7 deletions

View file

@ -360,10 +360,10 @@ namespace TShockAPI
var def = field.GetValue(defaults);
sb.AppendLine("## {0} ".SFormat(name));
sb.AppendLine("**Type:** {0} ".SFormat(type));
sb.AppendLine("**Description:** {0} ".SFormat(desc));
sb.AppendLine("**Default:** \"{0}\" ".SFormat(def));
sb.AppendLine("{0} ".SFormat(name));
sb.AppendLine("Type: {0} ".SFormat(type));
sb.AppendLine("Description: {0} ".SFormat(desc));
sb.AppendLine("Default: \"{0}\" ".SFormat(def));
sb.AppendLine();
}