sodoff/src/Schema/CompletionAction.cs
Robert Paciorek 8d8b9a4566 SoD bug fixes
- fish trap on the farm now gives a reward
  - added support for revard via achievements in RoomService
  - added achievements for fish trap rewards
- fixed DuplicateUserName message on SoD 1.13
  - not encrypted responses with correct schema in V3/RegistrationWebService.asmx/RegisterChild
- fixed putting racing sheep into farm
  - implemented /ContentWebService.asmx/RedeemItems

thanks to @ABrokenTV for debug these issues
2025-08-17 13:09:24 +00:00

19 lines
479 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[Serializable]
public class CompletionAction {
public CompletionAction() { }
public CompletionAction(CompletionAction other) {
Transition = other.Transition;
}
[XmlElement(ElementName = "Transition")]
public StateTransition Transition;
[XmlElement(ElementName = "AchievementCompletion", IsNullable = true)]
public AchievementCompletion[] AchievementCompletion;
}