mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00

- 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
19 lines
479 B
C#
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;
|
|
}
|