forked from SoDOff-Project/sodoff
fix dragon update
This commit is contained in:
parent
00d0a182c7
commit
09553c9d4f
@ -546,17 +546,19 @@ public class ContentController : Controller {
|
|||||||
|
|
||||||
// Attributes is special - the entire list isn't re-sent, so we need to manually update each
|
// Attributes is special - the entire list isn't re-sent, so we need to manually update each
|
||||||
if (dragonData.Attributes is null) dragonData.Attributes = new RaisedPetAttribute[] { };
|
if (dragonData.Attributes is null) dragonData.Attributes = new RaisedPetAttribute[] { };
|
||||||
|
List<RaisedPetAttribute> attribs = dragonData.Attributes.ToList();
|
||||||
if (newDragonData.Attributes is not null) {
|
if (newDragonData.Attributes is not null) {
|
||||||
foreach (RaisedPetAttribute newAttribute in newDragonData.Attributes) {
|
foreach (RaisedPetAttribute newAttribute in newDragonData.Attributes) {
|
||||||
RaisedPetAttribute? attribute = dragonData.Attributes.FirstOrDefault(a => a.Key == newAttribute.Key);
|
RaisedPetAttribute? attribute = attribs.Find(a => a.Key == newAttribute.Key);
|
||||||
if (attribute is null) {
|
if (attribute is null) {
|
||||||
dragonData.Attributes.Append(newAttribute);
|
attribs.Add(newAttribute);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
attribute.Value = newAttribute.Value;
|
attribute.Value = newAttribute.Value;
|
||||||
attribute.Type = newAttribute.Type;
|
attribute.Type = newAttribute.Type;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
dragonData.Attributes = attribs.ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
return dragonData;
|
return dragonData;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user