BYAML : Make sure the !h tag is only used for calculated hash strings
This commit is contained in:
parent
196a7f5525
commit
4ac5dc5e3c
@ -228,10 +228,11 @@ namespace FirstPlugin
|
||||
{
|
||||
uint hash = Convert.ToUInt32(key, 16);
|
||||
if (BYAML.Hashes.ContainsKey(hash))
|
||||
{
|
||||
key = $"{BYAML.Hashes[hash]}";
|
||||
|
||||
keyNode = new YamlScalarNode(key);
|
||||
keyNode.Tag = "!h";
|
||||
keyNode = new YamlScalarNode(key);
|
||||
keyNode.Tag = "!h";
|
||||
}
|
||||
}
|
||||
yamlNode.Add(keyNode, SaveNode(item.Key, item.Value));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user