diff --git a/Changelog.md b/Changelog.md index ed65ac7..0d1a59d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,22 @@ +# 0.20.3 +> More Fixes and Fancier Grass + +Here's another small set of bugfix updates, along with a nice visual improvement that makes the world's grassy ground look a little more interesting. + +Improvements +- Reduced the delay at which tooltips display to a quarter of a second +- Added variations to grass tiles + +Fixes +- Fixed a crash when people are told to leave a very tiny room +- Fixed paintings being too expensive to buy sometimes at the easel +- Fixed brazillian portuguese not being recognized on some computers, causing a crash +- Fixed a rare exception when a chair is deleted while someone is occupying it +- Fixed actions sometimes being disallowed with a "??Actions.??" tooltip + +API +- Added a debug option to skip preloading pathfinding data when entering a save + # 0.20.2 > Small Fixes and Improvements diff --git a/docs/api/.manifest b/docs/api/.manifest index 0442528..1d44a74 100644 --- a/docs/api/.manifest +++ b/docs/api/.manifest @@ -2416,7 +2416,7 @@ "TinyLife.World.FurnitureMail.OnCollected(TinyLife.Actions.Action)": "TinyLife.World.FurnitureMail.yml", "TinyLife.World.FurnitureMail.Validate(TinyLife.World.Map)": "TinyLife.World.FurnitureMail.yml", "TinyLife.World.GrassyAutoTile": "TinyLife.World.GrassyAutoTile.yml", - "TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.GrassyAutoTile.yml", + "TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.GrassyAutoTile.yml", "TinyLife.World.GrassyAutoTile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item})": "TinyLife.World.GrassyAutoTile.yml", "TinyLife.World.GrassyAutoTile.OnNeighborChanged(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)": "TinyLife.World.GrassyAutoTile.yml", "TinyLife.World.Household": "TinyLife.World.Household.yml", @@ -2672,7 +2672,7 @@ "TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map,TinyLife.World.Wall)": "TinyLife.World.SwingingDoor.yml", "TinyLife.World.SwingingDoor.Lock": "TinyLife.World.SwingingDoor.yml", "TinyLife.World.Tile": "TinyLife.World.Tile.yml", - "TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.Tile.yml", + "TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.BaseName": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.CanBuy": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Colors": "TinyLife.World.Tile.yml", @@ -2681,6 +2681,7 @@ "TinyLife.World.Tile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item})": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Single)": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.GetPrice": "TinyLife.World.Tile.yml", + "TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point)": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Height": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Icon": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Name": "TinyLife.World.Tile.yml", @@ -2690,6 +2691,7 @@ "TinyLife.World.Tile.Price": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.ReferencePrice": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type)": "TinyLife.World.Tile.yml", + "TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type)": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.TextureRegions": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Tiles": "TinyLife.World.Tile.yml", "TinyLife.World.Tile.Width": "TinyLife.World.Tile.yml", diff --git a/docs/api/TinyLife.Actions.Action.yml b/docs/api/TinyLife.Actions.Action.yml index 0f91970..4ed6e64 100644 --- a/docs/api/TinyLife.Actions.Action.yml +++ b/docs/api/TinyLife.Actions.Action.yml @@ -30,7 +30,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Action path: ../TinyLife/Actions/Action.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Actions/Action.cs @@ -169,7 +169,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Action.cs @@ -208,7 +208,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Action.cs @@ -253,7 +253,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Action.cs @@ -292,7 +292,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/Action.cs @@ -334,7 +334,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanMultitask path: ../TinyLife/Actions/Action.cs @@ -375,7 +375,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCancel path: ../TinyLife/Actions/Action.cs @@ -416,7 +416,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/Action.cs @@ -457,7 +457,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconObject path: ../TinyLife/Actions/Action.cs @@ -494,7 +494,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CausesExtremelyFastSpeed path: ../TinyLife/Actions/Action.cs @@ -531,7 +531,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Actions/Action.cs @@ -568,7 +568,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TryForceFail path: ../TinyLife/Actions/Action.cs @@ -612,7 +612,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ApplyVariety path: ../TinyLife/Actions/Action.cs @@ -650,7 +650,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanEnqueueConversation path: ../TinyLife/Actions/Action.cs @@ -694,7 +694,7 @@ items: source: remote: path: TinyLife/Actions/Action.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanMultitask path: ../TinyLife/Actions/Action.cs diff --git a/docs/api/TinyLife.Actions.ActionInfo.yml b/docs/api/TinyLife.Actions.ActionInfo.yml index 969e61a..dafc150 100644 --- a/docs/api/TinyLife.Actions.ActionInfo.yml +++ b/docs/api/TinyLife.Actions.ActionInfo.yml @@ -29,7 +29,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionInfo path: ../TinyLife/Actions/ActionInfo.cs @@ -92,7 +92,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Actions/ActionInfo.cs @@ -129,7 +129,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionLocation path: ../TinyLife/Actions/ActionInfo.cs @@ -174,7 +174,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionSpot path: ../TinyLife/Actions/ActionInfo.cs @@ -214,7 +214,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/Actions/ActionInfo.cs @@ -251,7 +251,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetActionObject path: ../TinyLife/Actions/ActionInfo.cs @@ -292,7 +292,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddAuxiliaryObject path: ../TinyLife/Actions/ActionInfo.cs @@ -331,7 +331,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetInvolvedObjects path: ../TinyLife/Actions/ActionInfo.cs @@ -379,7 +379,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetInvolvedObject path: ../TinyLife/Actions/ActionInfo.cs @@ -432,7 +432,7 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetInvolvedActionSpot path: ../TinyLife/Actions/ActionInfo.cs @@ -471,11 +471,11 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToFreeActionSpot path: ../TinyLife/Actions/ActionInfo.cs - startLine: 158 + startLine: 159 assemblies: - Tiny Life namespace: TinyLife.Actions @@ -510,11 +510,11 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/ActionInfo.cs - startLine: 171 + startLine: 172 assemblies: - Tiny Life namespace: TinyLife.Actions @@ -546,11 +546,11 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FromLocation path: ../TinyLife/Actions/ActionInfo.cs - startLine: 217 + startLine: 218 assemblies: - Tiny Life namespace: TinyLife.Actions @@ -590,11 +590,11 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FromObjectGeneric path: ../TinyLife/Actions/ActionInfo.cs - startLine: 227 + startLine: 228 assemblies: - Tiny Life namespace: TinyLife.Actions @@ -634,11 +634,11 @@ items: source: remote: path: TinyLife/Actions/ActionInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FromSelf path: ../TinyLife/Actions/ActionInfo.cs - startLine: 236 + startLine: 237 assemblies: - Tiny Life namespace: TinyLife.Actions diff --git a/docs/api/TinyLife.Actions.ActionType.AiSettings.yml b/docs/api/TinyLife.Actions.ActionType.AiSettings.yml index 25c632a..b6e7b14 100644 --- a/docs/api/TinyLife.Actions.ActionType.AiSettings.yml +++ b/docs/api/TinyLife.Actions.ActionType.AiSettings.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AiSettings path: ../TinyLife/Actions/ActionType.cs @@ -62,7 +62,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SolvedNeeds path: ../TinyLife/Actions/ActionType.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassivePriority path: ../TinyLife/Actions/ActionType.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanDoRandomly path: ../TinyLife/Actions/ActionType.cs @@ -161,7 +161,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanDoAtAnyPoint path: ../TinyLife/Actions/ActionType.cs @@ -194,7 +194,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NeedsFreeActionSpot path: ../TinyLife/Actions/ActionType.cs diff --git a/docs/api/TinyLife.Actions.ActionType.CanExecuteDelegate.yml b/docs/api/TinyLife.Actions.ActionType.CanExecuteDelegate.yml index f04298b..53c4f36 100644 --- a/docs/api/TinyLife.Actions.ActionType.CanExecuteDelegate.yml +++ b/docs/api/TinyLife.Actions.ActionType.CanExecuteDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteDelegate path: ../TinyLife/Actions/ActionType.cs diff --git a/docs/api/TinyLife.Actions.ActionType.CanExecuteResult.yml b/docs/api/TinyLife.Actions.ActionType.CanExecuteResult.yml index 743a42c..eb28fd7 100644 --- a/docs/api/TinyLife.Actions.ActionType.CanExecuteResult.yml +++ b/docs/api/TinyLife.Actions.ActionType.CanExecuteResult.yml @@ -36,7 +36,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteResult path: ../TinyLife/Actions/ActionType.cs @@ -72,7 +72,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hidden path: ../TinyLife/Actions/ActionType.cs @@ -106,7 +106,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Valid path: ../TinyLife/Actions/ActionType.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HoldingItem path: ../TinyLife/Actions/ActionType.cs @@ -174,7 +174,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NoSpace path: ../TinyLife/Actions/ActionType.cs @@ -208,7 +208,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NoChair path: ../TinyLife/Actions/ActionType.cs @@ -242,7 +242,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NotEnoughMoney path: ../TinyLife/Actions/ActionType.cs @@ -276,7 +276,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NotEnoughSkill path: ../TinyLife/Actions/ActionType.cs @@ -310,7 +310,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooFar path: ../TinyLife/Actions/ActionType.cs @@ -344,7 +344,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NotYours path: ../TinyLife/Actions/ActionType.cs @@ -378,7 +378,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooUncomfortable path: ../TinyLife/Actions/ActionType.cs @@ -412,7 +412,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooEmbarrassed path: ../TinyLife/Actions/ActionType.cs @@ -446,7 +446,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooSad path: ../TinyLife/Actions/ActionType.cs @@ -480,7 +480,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WrongRelationshipType path: ../TinyLife/Actions/ActionType.cs @@ -514,7 +514,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ObjectBroken path: ../TinyLife/Actions/ActionType.cs @@ -548,7 +548,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NoMatchingObjectAround path: ../TinyLife/Actions/ActionType.cs @@ -582,7 +582,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UtilitiesDisabled path: ../TinyLife/Actions/ActionType.cs @@ -616,7 +616,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Expired path: ../TinyLife/Actions/ActionType.cs @@ -650,7 +650,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BlockedByEmotionModifier path: ../TinyLife/Actions/ActionType.cs @@ -684,7 +684,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WaitingRequired path: ../TinyLife/Actions/ActionType.cs @@ -718,7 +718,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooStunned path: ../TinyLife/Actions/ActionType.cs @@ -752,7 +752,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AlreadyDone path: ../TinyLife/Actions/ActionType.cs diff --git a/docs/api/TinyLife.Actions.ActionType.TypeSettings.yml b/docs/api/TinyLife.Actions.ActionType.TypeSettings.yml index d389bf3..c95e55f 100644 --- a/docs/api/TinyLife.Actions.ActionType.TypeSettings.yml +++ b/docs/api/TinyLife.Actions.ActionType.TypeSettings.yml @@ -37,7 +37,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TypeSettings path: ../TinyLife/Actions/ActionType.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Actions/ActionType.cs @@ -116,7 +116,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NameWithoutCategory path: ../TinyLife/Actions/ActionType.cs @@ -154,7 +154,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Categories path: ../TinyLife/Actions/ActionType.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Actions/ActionType.cs @@ -225,7 +225,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Context path: ../TinyLife/Actions/ActionType.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecute path: ../TinyLife/Actions/ActionType.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConstructedType path: ../TinyLife/Actions/ActionType.cs @@ -324,7 +324,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConstructorArguments path: ../TinyLife/Actions/ActionType.cs @@ -357,7 +357,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Varieties path: ../TinyLife/Actions/ActionType.cs @@ -390,7 +390,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Ai path: ../TinyLife/Actions/ActionType.cs @@ -423,7 +423,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsInappropriateElsewhere path: ../TinyLife/Actions/ActionType.cs @@ -456,7 +456,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IconName path: ../TinyLife/Actions/ActionType.cs @@ -489,7 +489,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Actions/ActionType.cs @@ -522,7 +522,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredSkill path: ../TinyLife/Actions/ActionType.cs @@ -555,7 +555,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredAges path: ../TinyLife/Actions/ActionType.cs @@ -588,7 +588,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredEmotion path: ../TinyLife/Actions/ActionType.cs @@ -621,7 +621,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredPersonality path: ../TinyLife/Actions/ActionType.cs @@ -654,7 +654,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IgnoreObjectConditions path: ../TinyLife/Actions/ActionType.cs @@ -687,7 +687,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/ActionType.cs @@ -729,7 +729,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetData path: ../TinyLife/Actions/ActionType.cs @@ -767,7 +767,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetData path: ../TinyLife/Actions/ActionType.cs @@ -810,7 +810,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDataKeys path: ../TinyLife/Actions/ActionType.cs diff --git a/docs/api/TinyLife.Actions.ActionType.yml b/docs/api/TinyLife.Actions.ActionType.yml index 3aaf54c..6d0d070 100644 --- a/docs/api/TinyLife.Actions.ActionType.yml +++ b/docs/api/TinyLife.Actions.ActionType.yml @@ -204,7 +204,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionType path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Actions/ActionType.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Settings path: ../TinyLife/Actions/ActionType.cs @@ -330,7 +330,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SourceString path: ../TinyLife/Actions/ActionType.cs @@ -369,7 +369,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/Actions/ActionType.cs @@ -380,7 +380,7 @@ items: summary: "\nCreates a new instance of this .\n" example: [] syntax: - content: public Action Construct(ActionInfo info, ActionVariety? variety = null) + content: public Action Construct(ActionInfo info, ActionVariety? variety = default(ActionVariety? )) parameters: - id: info type: TinyLife.Actions.ActionInfo @@ -414,7 +414,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Actions/ActionType.cs @@ -456,7 +456,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsActionType path: ../TinyLife/Actions/ActionType.cs @@ -495,7 +495,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecute path: ../TinyLife/Actions/ActionType.cs @@ -537,7 +537,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconName path: ../TinyLife/Actions/ActionType.cs @@ -572,7 +572,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetVarieties path: ../TinyLife/Actions/ActionType.cs @@ -611,7 +611,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Actions/ActionType.cs @@ -652,7 +652,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RegisterAll path: ../TinyLife/Actions/ActionType.cs @@ -696,7 +696,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Walk path: ../TinyLife/Actions/ActionType.Internal.cs @@ -731,7 +731,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Drive path: ../TinyLife/Actions/ActionType.Internal.cs @@ -766,7 +766,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassOut path: ../TinyLife/Actions/ActionType.Internal.cs @@ -801,7 +801,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PeeSelf path: ../TinyLife/Actions/ActionType.Internal.cs @@ -836,7 +836,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Starve path: ../TinyLife/Actions/ActionType.Internal.cs @@ -871,7 +871,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BeAwayFromLotEmployment path: ../TinyLife/Actions/ActionType.Internal.cs @@ -906,7 +906,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DeliverMail path: ../TinyLife/Actions/ActionType.Internal.cs @@ -941,7 +941,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Die path: ../TinyLife/Actions/ActionType.Internal.cs @@ -976,7 +976,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CollectTrash path: ../TinyLife/Actions/ActionType.Internal.cs @@ -1011,7 +1011,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisitorGoHome path: ../TinyLife/Actions/ActionType.Internal.cs @@ -1046,7 +1046,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Internal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFoodSomewhereElse path: ../TinyLife/Actions/ActionType.Internal.cs @@ -1081,7 +1081,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoHere path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1116,7 +1116,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sit path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1151,7 +1151,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SitToilet path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1186,7 +1186,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sleep path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1221,7 +1221,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TakeShower path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1256,7 +1256,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIngredientsSingle path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1291,7 +1291,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIngredientsFamily path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1326,7 +1326,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PutDown path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1361,7 +1361,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PrepareFood path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1396,7 +1396,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CookFood path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1431,7 +1431,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PickUp path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1466,7 +1466,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Eat path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1501,7 +1501,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GrabServing path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1536,7 +1536,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CallToMeal path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1571,7 +1571,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlaySingleplayerGames path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1606,7 +1606,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayOnlineGames path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1641,7 +1641,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WatchWalkthroughs path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1676,7 +1676,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JoinEasyTournament path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1711,7 +1711,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JoinAdvancedTournament path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1746,7 +1746,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Chat path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1781,7 +1781,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChatWith path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1816,7 +1816,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CleanDish path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1851,7 +1851,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChangeOutfit path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1886,7 +1886,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EditOutfits path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1921,7 +1921,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoHome path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1956,7 +1956,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisitLot path: ../TinyLife/Actions/ActionType.Misc.cs @@ -1991,7 +1991,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Paint path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2026,7 +2026,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sell path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2061,7 +2061,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PracticeSpeech path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2096,7 +2096,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Read path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2131,7 +2131,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PutAway path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2166,7 +2166,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PracticeJokes path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2201,7 +2201,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Work path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2236,7 +2236,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetJob path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2271,7 +2271,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: QuitJob path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2306,7 +2306,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MopPuddle path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2341,7 +2341,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PracticeProgramming path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2376,7 +2376,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModGame path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2411,7 +2411,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateApp path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2446,7 +2446,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PublishApp path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2481,7 +2481,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HackSomeone path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2516,7 +2516,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ResearchProgrammingPatterns path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2551,7 +2551,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WatchTv path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2586,7 +2586,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Repair path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2621,7 +2621,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PayBills path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2656,7 +2656,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PracticeWriting path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2691,7 +2691,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WriteBook path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2726,7 +2726,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelfPublishBook path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2761,7 +2761,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HaveBookPublished path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2796,7 +2796,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LockDoor path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2831,7 +2831,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AdmireLgbtFlag path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2866,7 +2866,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShakeTree path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2901,7 +2901,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RunOnTreadmill path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2936,7 +2936,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoJogging path: ../TinyLife/Actions/ActionType.Misc.cs @@ -2971,7 +2971,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LiftWeights path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3006,7 +3006,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MixProteinShake path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3041,7 +3041,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWater path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3076,7 +3076,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WashHands path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3111,7 +3111,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToggleLight path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3146,7 +3146,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToggleAllLights path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3181,7 +3181,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GrillFood path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3216,7 +3216,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ThrowAway path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3251,7 +3251,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Scrap path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3286,7 +3286,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CleanEverything path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3321,7 +3321,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Clean path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3356,7 +3356,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Woodworking path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3391,7 +3391,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LightFireplace path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3426,7 +3426,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DoHomework path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3461,7 +3461,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayWithToy path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3496,7 +3496,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CookChildFood path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3531,7 +3531,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayInSandbox path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3566,7 +3566,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShufflePuzzle path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3601,7 +3601,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Puzzle path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3636,7 +3636,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PsychSelfUp path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3671,7 +3671,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Store path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3706,7 +3706,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFurnitureMail path: ../TinyLife/Actions/ActionType.Misc.cs @@ -3741,7 +3741,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConfideIn path: ../TinyLife/Actions/ActionType.Social.cs @@ -3776,7 +3776,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComplainAboutLife path: ../TinyLife/Actions/ActionType.Social.cs @@ -3811,7 +3811,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutFeelings path: ../TinyLife/Actions/ActionType.Social.cs @@ -3846,7 +3846,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShareIdeas path: ../TinyLife/Actions/ActionType.Social.cs @@ -3881,7 +3881,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GaugeRelationship path: ../TinyLife/Actions/ActionType.Social.cs @@ -3916,7 +3916,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskToLeave path: ../TinyLife/Actions/ActionType.Social.cs @@ -3951,7 +3951,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CallOver path: ../TinyLife/Actions/ActionType.Social.cs @@ -3986,7 +3986,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ThisIsInappropriate path: ../TinyLife/Actions/ActionType.Social.cs @@ -4021,7 +4021,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WakeUp path: ../TinyLife/Actions/ActionType.Social.cs @@ -4056,7 +4056,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskAboutPersonality path: ../TinyLife/Actions/ActionType.Social.cs @@ -4091,7 +4091,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskToTaste path: ../TinyLife/Actions/ActionType.Social.cs @@ -4126,7 +4126,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BribeForFriendship path: ../TinyLife/Actions/ActionType.Social.cs @@ -4161,7 +4161,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Talk path: ../TinyLife/Actions/ActionType.Social.cs @@ -4196,7 +4196,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskAboutDay path: ../TinyLife/Actions/ActionType.Social.cs @@ -4231,7 +4231,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellEngagingStory path: ../TinyLife/Actions/ActionType.Social.cs @@ -4266,7 +4266,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellStory path: ../TinyLife/Actions/ActionType.Social.cs @@ -4301,7 +4301,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutWork path: ../TinyLife/Actions/ActionType.Social.cs @@ -4336,7 +4336,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutNeighborhood path: ../TinyLife/Actions/ActionType.Social.cs @@ -4371,7 +4371,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutOutdoors path: ../TinyLife/Actions/ActionType.Social.cs @@ -4406,7 +4406,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutFood path: ../TinyLife/Actions/ActionType.Social.cs @@ -4441,7 +4441,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DiscussWorkoutRegimen path: ../TinyLife/Actions/ActionType.Social.cs @@ -4476,7 +4476,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CompareMuscleSize path: ../TinyLife/Actions/ActionType.Social.cs @@ -4511,7 +4511,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GushAboutPartner path: ../TinyLife/Actions/ActionType.Social.cs @@ -4546,7 +4546,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskAboutGamingRig path: ../TinyLife/Actions/ActionType.Social.cs @@ -4581,7 +4581,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskAboutComputerSpecs path: ../TinyLife/Actions/ActionType.Social.cs @@ -4616,7 +4616,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BoastAboutPagesWritten path: ../TinyLife/Actions/ActionType.Social.cs @@ -4651,7 +4651,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PoseMathPuzzle path: ../TinyLife/Actions/ActionType.Social.cs @@ -4686,7 +4686,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExpressFearOfCrowds path: ../TinyLife/Actions/ActionType.Social.cs @@ -4721,7 +4721,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutNaps path: ../TinyLife/Actions/ActionType.Social.cs @@ -4756,7 +4756,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutWatchingTv path: ../TinyLife/Actions/ActionType.Social.cs @@ -4791,7 +4791,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InviteToHousehold path: ../TinyLife/Actions/ActionType.Social.cs @@ -4826,7 +4826,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskToCook path: ../TinyLife/Actions/ActionType.Social.cs @@ -4861,7 +4861,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskToTellStory path: ../TinyLife/Actions/ActionType.Social.cs @@ -4896,7 +4896,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComplainAboutAdults path: ../TinyLife/Actions/ActionType.Social.cs @@ -4931,7 +4931,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComplainAboutParent path: ../TinyLife/Actions/ActionType.Social.cs @@ -4966,7 +4966,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutCartoons path: ../TinyLife/Actions/ActionType.Social.cs @@ -5001,7 +5001,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutSchool path: ../TinyLife/Actions/ActionType.Social.cs @@ -5036,7 +5036,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutFavoriteToys path: ../TinyLife/Actions/ActionType.Social.cs @@ -5071,7 +5071,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AskAboutFamilyWellbeing path: ../TinyLife/Actions/ActionType.Social.cs @@ -5106,7 +5106,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAboutFamily path: ../TinyLife/Actions/ActionType.Social.cs @@ -5141,7 +5141,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellJoke path: ../TinyLife/Actions/ActionType.Social.cs @@ -5176,7 +5176,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellFunnyStory path: ../TinyLife/Actions/ActionType.Social.cs @@ -5211,7 +5211,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellRidiculousStory path: ../TinyLife/Actions/ActionType.Social.cs @@ -5246,7 +5246,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellComplexJoke path: ../TinyLife/Actions/ActionType.Social.cs @@ -5281,7 +5281,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayTrick path: ../TinyLife/Actions/ActionType.Social.cs @@ -5316,7 +5316,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutWork path: ../TinyLife/Actions/ActionType.Social.cs @@ -5351,7 +5351,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutOwnUnemployment path: ../TinyLife/Actions/ActionType.Social.cs @@ -5386,7 +5386,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutTreadmillAccidents path: ../TinyLife/Actions/ActionType.Social.cs @@ -5421,7 +5421,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutWritingStyle path: ../TinyLife/Actions/ActionType.Social.cs @@ -5456,7 +5456,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutAromance path: ../TinyLife/Actions/ActionType.Social.cs @@ -5491,7 +5491,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutAsexuality path: ../TinyLife/Actions/ActionType.Social.cs @@ -5526,7 +5526,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellJokeAboutSomething path: ../TinyLife/Actions/ActionType.Social.cs @@ -5561,7 +5561,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellDadJoke path: ../TinyLife/Actions/ActionType.Social.cs @@ -5596,7 +5596,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JokeAboutFamilyGatherings path: ../TinyLife/Actions/ActionType.Social.cs @@ -5631,7 +5631,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Insult path: ../TinyLife/Actions/ActionType.Social.cs @@ -5666,7 +5666,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ImplyMotherIsCamel path: ../TinyLife/Actions/ActionType.Social.cs @@ -5701,7 +5701,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfUnemployment path: ../TinyLife/Actions/ActionType.Social.cs @@ -5736,7 +5736,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfLaziness path: ../TinyLife/Actions/ActionType.Social.cs @@ -5771,7 +5771,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfIntroversion path: ../TinyLife/Actions/ActionType.Social.cs @@ -5806,7 +5806,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfNiceness path: ../TinyLife/Actions/ActionType.Social.cs @@ -5841,7 +5841,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComplainAboutRelationship path: ../TinyLife/Actions/ActionType.Social.cs @@ -5876,7 +5876,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfPoorFitness path: ../TinyLife/Actions/ActionType.Social.cs @@ -5911,7 +5911,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BreakUp path: ../TinyLife/Actions/ActionType.Social.cs @@ -5946,7 +5946,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfFriends path: ../TinyLife/Actions/ActionType.Social.cs @@ -5981,7 +5981,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfBeingNerd path: ../TinyLife/Actions/ActionType.Social.cs @@ -6016,7 +6016,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeFunOfBeingBadAtSchool path: ../TinyLife/Actions/ActionType.Social.cs @@ -6051,7 +6051,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShooChild path: ../TinyLife/Actions/ActionType.Social.cs @@ -6086,7 +6086,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Flirt path: ../TinyLife/Actions/ActionType.Social.cs @@ -6121,7 +6121,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComplimentLooks path: ../TinyLife/Actions/ActionType.Social.cs @@ -6156,7 +6156,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeRisqueRemark path: ../TinyLife/Actions/ActionType.Social.cs @@ -6191,7 +6191,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StartDating path: ../TinyLife/Actions/ActionType.Social.cs @@ -6226,7 +6226,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Social.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoolAround path: ../TinyLife/Actions/ActionType.Social.cs @@ -6261,7 +6261,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanPickUpOrIsHoldingForTarget path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6320,7 +6320,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanPickUpOrIsHoldingForTarget path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6379,7 +6379,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanPickUpOrIsHoldingForTarget path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6432,7 +6432,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanPlaceHeldItem path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6476,7 +6476,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasChairOrIsStandingDesk path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6520,7 +6520,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsDislikedOrMean path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6564,7 +6564,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsReadyForRomance path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6608,7 +6608,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsComfortable path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6652,7 +6652,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsNotUncomfortable path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6696,7 +6696,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsNotEmbarrassed path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6740,7 +6740,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsEmptyHanded path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6784,7 +6784,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanWorkAtDeskObject path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6828,7 +6828,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsNotExpired path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6872,7 +6872,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanDoImportantAction path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6916,7 +6916,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanDoSocialAction path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -6960,7 +6960,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AreDating path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -7004,7 +7004,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteAll path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -7054,7 +7054,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBeSexual path: ../TinyLife/Actions/ActionType.Utilities.cs @@ -7098,7 +7098,7 @@ items: source: remote: path: TinyLife/Actions/ActionType.Utilities.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSkillPriorityMod path: ../TinyLife/Actions/ActionType.Utilities.cs diff --git a/docs/api/TinyLife.Actions.ActionVariety.yml b/docs/api/TinyLife.Actions.ActionVariety.yml index 0cf7360..3535e74 100644 --- a/docs/api/TinyLife.Actions.ActionVariety.yml +++ b/docs/api/TinyLife.Actions.ActionVariety.yml @@ -31,7 +31,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionVariety path: ../TinyLife/Actions/ActionVariety.cs @@ -77,7 +77,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Actions/ActionVariety.cs @@ -110,7 +110,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassivePriority path: ../TinyLife/Actions/ActionVariety.cs @@ -143,7 +143,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecute path: ../TinyLife/Actions/ActionVariety.cs @@ -176,7 +176,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayName path: ../TinyLife/Actions/ActionVariety.cs @@ -209,7 +209,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Description path: ../TinyLife/Actions/ActionVariety.cs @@ -242,7 +242,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CustomLayout path: ../TinyLife/Actions/ActionVariety.cs @@ -275,7 +275,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/ActionVariety.cs @@ -311,7 +311,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Actions/ActionVariety.cs @@ -346,7 +346,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBeExecuted path: ../TinyLife/Actions/ActionVariety.cs @@ -388,7 +388,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPassivePriority path: ../TinyLife/Actions/ActionVariety.cs @@ -427,7 +427,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetData path: ../TinyLife/Actions/ActionVariety.cs @@ -465,7 +465,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetData path: ../TinyLife/Actions/ActionVariety.cs @@ -508,7 +508,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDataKeys path: ../TinyLife/Actions/ActionVariety.cs @@ -543,7 +543,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FreePeople path: ../TinyLife/Actions/ActionVariety.cs @@ -584,7 +584,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ImageLayout path: ../TinyLife/Actions/ActionVariety.cs @@ -631,7 +631,7 @@ items: source: remote: path: TinyLife/Actions/ActionVariety.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PortraitLayout path: ../TinyLife/Actions/ActionVariety.cs diff --git a/docs/api/TinyLife.Actions.BehaviorAction-1.yml b/docs/api/TinyLife.Actions.BehaviorAction-1.yml index 957c71f..155df45 100644 --- a/docs/api/TinyLife.Actions.BehaviorAction-1.yml +++ b/docs/api/TinyLife.Actions.BehaviorAction-1.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BehaviorAction path: ../TinyLife/Actions/BehaviorAction.cs @@ -127,7 +127,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Behavior path: ../TinyLife/Actions/BehaviorAction.cs @@ -166,7 +166,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/BehaviorAction.cs @@ -207,7 +207,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/BehaviorAction.cs @@ -244,7 +244,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/BehaviorAction.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconObject path: ../TinyLife/Actions/BehaviorAction.cs @@ -331,7 +331,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/BehaviorAction.cs @@ -372,7 +372,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/BehaviorAction.cs diff --git a/docs/api/TinyLife.Actions.BehaviorMultiAction-1.yml b/docs/api/TinyLife.Actions.BehaviorMultiAction-1.yml index f6ad85e..21961e2 100644 --- a/docs/api/TinyLife.Actions.BehaviorMultiAction-1.yml +++ b/docs/api/TinyLife.Actions.BehaviorMultiAction-1.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BehaviorMultiAction path: ../TinyLife/Actions/BehaviorAction.cs @@ -137,7 +137,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Behavior path: ../TinyLife/Actions/BehaviorAction.cs @@ -176,7 +176,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/BehaviorAction.cs @@ -217,7 +217,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/BehaviorAction.cs @@ -257,7 +257,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/BehaviorAction.cs @@ -294,7 +294,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/BehaviorAction.cs @@ -341,7 +341,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconObject path: ../TinyLife/Actions/BehaviorAction.cs @@ -381,7 +381,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/BehaviorAction.cs @@ -422,7 +422,7 @@ items: source: remote: path: TinyLife/Actions/BehaviorAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/BehaviorAction.cs diff --git a/docs/api/TinyLife.Actions.Behaviors.ActionBehavior.yml b/docs/api/TinyLife.Actions.Behaviors.ActionBehavior.yml index 094298f..7d9f000 100644 --- a/docs/api/TinyLife.Actions.Behaviors.ActionBehavior.yml +++ b/docs/api/TinyLife.Actions.Behaviors.ActionBehavior.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionBehavior path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -72,7 +72,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Action path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -143,7 +143,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -177,7 +177,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -221,7 +221,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconObject path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -296,7 +296,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -337,7 +337,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateDefaultInstance path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs diff --git a/docs/api/TinyLife.Actions.Behaviors.ComputerBehavior.yml b/docs/api/TinyLife.Actions.Behaviors.ComputerBehavior.yml index 77c5e6d..987b023 100644 --- a/docs/api/TinyLife.Actions.Behaviors.ComputerBehavior.yml +++ b/docs/api/TinyLife.Actions.Behaviors.ComputerBehavior.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ComputerBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComputerBehavior path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs @@ -74,7 +74,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ComputerBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs @@ -110,7 +110,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ComputerBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs @@ -145,7 +145,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ComputerBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs @@ -190,7 +190,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ComputerBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs diff --git a/docs/api/TinyLife.Actions.Behaviors.GetAndSitDownBehavior.yml b/docs/api/TinyLife.Actions.Behaviors.GetAndSitDownBehavior.yml index 2e11e27..c2b3ca4 100644 --- a/docs/api/TinyLife.Actions.Behaviors.GetAndSitDownBehavior.yml +++ b/docs/api/TinyLife.Actions.Behaviors.GetAndSitDownBehavior.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAndSitDownBehavior path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -75,7 +75,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -161,7 +161,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -196,7 +196,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -241,7 +241,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconObject path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -279,7 +279,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs @@ -321,11 +321,11 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetInteractingItem path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - startLine: 144 + startLine: 146 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors @@ -364,11 +364,11 @@ items: source: remote: path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetInteractingItemForAction path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs - startLine: 170 + startLine: 172 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors diff --git a/docs/api/TinyLife.Actions.Behaviors.MultiActionBehavior.yml b/docs/api/TinyLife.Actions.Behaviors.MultiActionBehavior.yml index 962d0cd..4c272d9 100644 --- a/docs/api/TinyLife.Actions.Behaviors.MultiActionBehavior.yml +++ b/docs/api/TinyLife.Actions.Behaviors.MultiActionBehavior.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MultiActionBehavior path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -78,7 +78,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs @@ -114,7 +114,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/ActionBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs diff --git a/docs/api/TinyLife.Actions.Behaviors.SinkBehavior.yml b/docs/api/TinyLife.Actions.Behaviors.SinkBehavior.yml index 5eb4f03..df31251 100644 --- a/docs/api/TinyLife.Actions.Behaviors.SinkBehavior.yml +++ b/docs/api/TinyLife.Actions.Behaviors.SinkBehavior.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/SinkBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SinkBehavior path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs @@ -73,7 +73,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/SinkBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs @@ -109,7 +109,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/SinkBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs @@ -147,7 +147,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/SinkBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/SinkBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs diff --git a/docs/api/TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.yml b/docs/api/TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.yml index fed38d6..62742a0 100644 --- a/docs/api/TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.yml +++ b/docs/api/TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkAtDeskObjectBehavior path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs @@ -75,7 +75,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs @@ -111,7 +111,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs @@ -149,7 +149,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs @@ -194,7 +194,7 @@ items: source: remote: path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs diff --git a/docs/api/TinyLife.Actions.CompletionType.yml b/docs/api/TinyLife.Actions.CompletionType.yml index 5285daa..e41e1a6 100644 --- a/docs/api/TinyLife.Actions.CompletionType.yml +++ b/docs/api/TinyLife.Actions.CompletionType.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Actions/CompletionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CompletionType path: ../TinyLife/Actions/CompletionType.cs @@ -56,7 +56,7 @@ items: source: remote: path: TinyLife/Actions/CompletionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Active path: ../TinyLife/Actions/CompletionType.cs @@ -90,7 +90,7 @@ items: source: remote: path: TinyLife/Actions/CompletionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Completed path: ../TinyLife/Actions/CompletionType.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/Actions/CompletionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Failed path: ../TinyLife/Actions/CompletionType.cs @@ -158,7 +158,7 @@ items: source: remote: path: TinyLife/Actions/CompletionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Canceled path: ../TinyLife/Actions/CompletionType.cs diff --git a/docs/api/TinyLife.Actions.DieAction.yml b/docs/api/TinyLife.Actions.DieAction.yml index d4ee98d..a020a78 100644 --- a/docs/api/TinyLife.Actions.DieAction.yml +++ b/docs/api/TinyLife.Actions.DieAction.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DieAction path: ../TinyLife/Actions/DieAction.cs @@ -120,7 +120,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reason path: ../TinyLife/Actions/DieAction.cs @@ -163,7 +163,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/DieAction.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/DieAction.cs @@ -237,7 +237,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Actions/DieAction.cs @@ -275,7 +275,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCancel path: ../TinyLife/Actions/DieAction.cs @@ -317,7 +317,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanEnqueueConversation path: ../TinyLife/Actions/DieAction.cs @@ -362,7 +362,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/DieAction.cs @@ -407,7 +407,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/DieAction.cs @@ -445,7 +445,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/DieAction.cs @@ -484,7 +484,7 @@ items: source: remote: path: TinyLife/Actions/DieAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Enqueue path: ../TinyLife/Actions/DieAction.cs diff --git a/docs/api/TinyLife.Actions.Emote.yml b/docs/api/TinyLife.Actions.Emote.yml index 6f47ccf..60469fa 100644 --- a/docs/api/TinyLife.Actions.Emote.yml +++ b/docs/api/TinyLife.Actions.Emote.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Emote path: ../TinyLife/Actions/Emote.cs @@ -67,7 +67,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AllCategories path: ../TinyLife/Actions/Emote.cs @@ -104,7 +104,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Actions/Emote.cs @@ -139,7 +139,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Categories path: ../TinyLife/Actions/Emote.cs @@ -174,7 +174,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Emote.cs @@ -213,7 +213,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRandomEmote path: ../TinyLife/Actions/Emote.cs @@ -254,7 +254,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetEmotes path: ../TinyLife/Actions/Emote.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Actions/Emote.cs diff --git a/docs/api/TinyLife.Actions.EmoteCategory.yml b/docs/api/TinyLife.Actions.EmoteCategory.yml index 90e364e..8633b94 100644 --- a/docs/api/TinyLife.Actions.EmoteCategory.yml +++ b/docs/api/TinyLife.Actions.EmoteCategory.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmoteCategory path: ../TinyLife/Actions/Emote.cs @@ -65,7 +65,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: General path: ../TinyLife/Actions/Emote.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Travel path: ../TinyLife/Actions/Emote.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Negative path: ../TinyLife/Actions/Emote.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Flirty path: ../TinyLife/Actions/Emote.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/Actions/Emote.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Unable path: ../TinyLife/Actions/Emote.cs diff --git a/docs/api/TinyLife.Actions.GoHereAction.yml b/docs/api/TinyLife.Actions.GoHereAction.yml index d1edc04..45f5673 100644 --- a/docs/api/TinyLife.Actions.GoHereAction.yml +++ b/docs/api/TinyLife.Actions.GoHereAction.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Actions/GoHereAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoHereAction path: ../TinyLife/Actions/GoHereAction.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Actions/GoHereAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/GoHereAction.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Actions/GoHereAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/GoHereAction.cs @@ -205,7 +205,7 @@ items: source: remote: path: TinyLife/Actions/GoHereAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/GoHereAction.cs @@ -240,7 +240,7 @@ items: source: remote: path: TinyLife/Actions/GoHereAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/GoHereAction.cs @@ -278,7 +278,7 @@ items: source: remote: path: TinyLife/Actions/GoHereAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCancel path: ../TinyLife/Actions/GoHereAction.cs diff --git a/docs/api/TinyLife.Actions.Handlers.MultiActionHandler.yml b/docs/api/TinyLife.Actions.Handlers.MultiActionHandler.yml index d5c36f4..fa22c89 100644 --- a/docs/api/TinyLife.Actions.Handlers.MultiActionHandler.yml +++ b/docs/api/TinyLife.Actions.Handlers.MultiActionHandler.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MultiActionHandler path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Actions path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs @@ -168,7 +168,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs @@ -213,7 +213,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs @@ -252,7 +252,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs @@ -287,7 +287,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/MultiActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs diff --git a/docs/api/TinyLife.Actions.Handlers.UnderlyingActionHandler.yml b/docs/api/TinyLife.Actions.Handlers.UnderlyingActionHandler.yml index ce13fe5..13c0080 100644 --- a/docs/api/TinyLife.Actions.Handlers.UnderlyingActionHandler.yml +++ b/docs/api/TinyLife.Actions.Handlers.UnderlyingActionHandler.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnderlyingActionHandler path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -77,7 +77,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Action path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -171,7 +171,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitializeExact path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -252,7 +252,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs @@ -326,7 +326,7 @@ items: source: remote: path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs diff --git a/docs/api/TinyLife.Actions.MultiAction.yml b/docs/api/TinyLife.Actions.MultiAction.yml index a17107c..32ed7d5 100644 --- a/docs/api/TinyLife.Actions.MultiAction.yml +++ b/docs/api/TinyLife.Actions.MultiAction.yml @@ -32,7 +32,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MultiAction path: ../TinyLife/Actions/MultiAction.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Handler path: ../TinyLife/Actions/MultiAction.cs @@ -185,7 +185,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MainElapsedTime path: ../TinyLife/Actions/MultiAction.cs @@ -234,7 +234,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InProgressTime path: ../TinyLife/Actions/MultiAction.cs @@ -275,7 +275,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/MultiAction.cs @@ -314,7 +314,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/MultiAction.cs @@ -351,7 +351,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/MultiAction.cs @@ -385,7 +385,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/MultiAction.cs @@ -422,7 +422,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/MultiAction.cs @@ -466,7 +466,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/MultiAction.cs @@ -504,7 +504,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PreInitialize path: ../TinyLife/Actions/MultiAction.cs @@ -538,7 +538,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/MultiAction.cs @@ -585,7 +585,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/MultiAction.cs @@ -622,7 +622,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/MultiAction.cs @@ -662,7 +662,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/MultiAction.cs @@ -703,7 +703,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/MultiAction.cs @@ -745,7 +745,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCancel path: ../TinyLife/Actions/MultiAction.cs @@ -787,7 +787,7 @@ items: source: remote: path: TinyLife/Actions/MultiAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoToActionLocation path: ../TinyLife/Actions/MultiAction.cs diff --git a/docs/api/TinyLife.Actions.OutOfTownAction.yml b/docs/api/TinyLife.Actions.OutOfTownAction.yml index 7a390eb..c68661c 100644 --- a/docs/api/TinyLife.Actions.OutOfTownAction.yml +++ b/docs/api/TinyLife.Actions.OutOfTownAction.yml @@ -24,7 +24,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OutOfTownAction path: ../TinyLife/Actions/OutOfTownAction.cs @@ -134,7 +134,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NeedsToTakeCareOf path: ../TinyLife/Actions/OutOfTownAction.cs @@ -169,7 +169,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/OutOfTownAction.cs @@ -217,7 +217,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/OutOfTownAction.cs @@ -255,7 +255,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/OutOfTownAction.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/OutOfTownAction.cs @@ -335,7 +335,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNextAction path: ../TinyLife/Actions/OutOfTownAction.cs @@ -377,7 +377,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanEnqueueConversation path: ../TinyLife/Actions/OutOfTownAction.cs @@ -422,7 +422,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CausesExtremelyFastSpeed path: ../TinyLife/Actions/OutOfTownAction.cs @@ -460,7 +460,7 @@ items: source: remote: path: TinyLife/Actions/OutOfTownAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetClosestExitRoad path: ../TinyLife/Actions/OutOfTownAction.cs diff --git a/docs/api/TinyLife.Actions.PathfindAction.yml b/docs/api/TinyLife.Actions.PathfindAction.yml index acb7370..8971771 100644 --- a/docs/api/TinyLife.Actions.PathfindAction.yml +++ b/docs/api/TinyLife.Actions.PathfindAction.yml @@ -27,7 +27,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PathfindAction path: ../TinyLife/Actions/PathfindAction.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpeedMultiplier path: ../TinyLife/Actions/PathfindAction.cs @@ -171,7 +171,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Path path: ../TinyLife/Actions/PathfindAction.cs @@ -208,7 +208,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PathReady path: ../TinyLife/Actions/PathfindAction.cs @@ -245,7 +245,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/PathfindAction.cs @@ -284,7 +284,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindPath path: ../TinyLife/Actions/PathfindAction.cs @@ -325,7 +325,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSpeed path: ../TinyLife/Actions/PathfindAction.cs @@ -362,7 +362,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnPathReady path: ../TinyLife/Actions/PathfindAction.cs @@ -396,7 +396,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/PathfindAction.cs @@ -431,7 +431,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/PathfindAction.cs @@ -476,7 +476,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/PathfindAction.cs @@ -514,7 +514,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/PathfindAction.cs @@ -553,7 +553,7 @@ items: source: remote: path: TinyLife/Actions/PathfindAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/PathfindAction.cs diff --git a/docs/api/TinyLife.Actions.PickUpOrSpawnAction.yml b/docs/api/TinyLife.Actions.PickUpOrSpawnAction.yml index ee13598..11b52bf 100644 --- a/docs/api/TinyLife.Actions.PickUpOrSpawnAction.yml +++ b/docs/api/TinyLife.Actions.PickUpOrSpawnAction.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PickUpOrSpawnAction path: ../TinyLife/Actions/PickUpOrSpawnAction.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ItemCategory path: ../TinyLife/Actions/PickUpOrSpawnAction.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ItemToSpawn path: ../TinyLife/Actions/PickUpOrSpawnAction.cs @@ -211,7 +211,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorsToSpawn path: ../TinyLife/Actions/PickUpOrSpawnAction.cs @@ -250,7 +250,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/PickUpOrSpawnAction.cs @@ -289,7 +289,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/PickUpOrSpawnAction.cs @@ -327,7 +327,7 @@ items: source: remote: path: TinyLife/Actions/PickUpOrSpawnAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIconObject path: ../TinyLife/Actions/PickUpOrSpawnAction.cs diff --git a/docs/api/TinyLife.Actions.PutAwayAction.yml b/docs/api/TinyLife.Actions.PutAwayAction.yml index 5326c21..8ef36dc 100644 --- a/docs/api/TinyLife.Actions.PutAwayAction.yml +++ b/docs/api/TinyLife.Actions.PutAwayAction.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Actions/PutAwayAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PutAwayAction path: ../TinyLife/Actions/PutAwayAction.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Actions/PutAwayAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Items path: ../TinyLife/Actions/PutAwayAction.cs @@ -165,7 +165,7 @@ items: source: remote: path: TinyLife/Actions/PutAwayAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/PutAwayAction.cs @@ -203,7 +203,7 @@ items: source: remote: path: TinyLife/Actions/PutAwayAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/PutAwayAction.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/Actions/PutAwayAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/PutAwayAction.cs diff --git a/docs/api/TinyLife.Actions.SellAction.yml b/docs/api/TinyLife.Actions.SellAction.yml index 9d878ce..4c1a5b4 100644 --- a/docs/api/TinyLife.Actions.SellAction.yml +++ b/docs/api/TinyLife.Actions.SellAction.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Actions/SellAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SellAction path: ../TinyLife/Actions/SellAction.cs @@ -129,7 +129,7 @@ items: source: remote: path: TinyLife/Actions/SellAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Items path: ../TinyLife/Actions/SellAction.cs @@ -166,7 +166,7 @@ items: source: remote: path: TinyLife/Actions/SellAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/SellAction.cs @@ -204,7 +204,7 @@ items: source: remote: path: TinyLife/Actions/SellAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/SellAction.cs @@ -239,7 +239,7 @@ items: source: remote: path: TinyLife/Actions/SellAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/SellAction.cs @@ -277,7 +277,7 @@ items: source: remote: path: TinyLife/Actions/SellAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSoldObject path: ../TinyLife/Actions/SellAction.cs diff --git a/docs/api/TinyLife.Actions.SitAction.yml b/docs/api/TinyLife.Actions.SitAction.yml index 7b753a6..c3d80ca 100644 --- a/docs/api/TinyLife.Actions.SitAction.yml +++ b/docs/api/TinyLife.Actions.SitAction.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SitAction path: ../TinyLife/Actions/SitAction.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/SitAction.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/SitAction.cs @@ -205,7 +205,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/SitAction.cs @@ -240,7 +240,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/SitAction.cs @@ -285,7 +285,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/SitAction.cs @@ -323,7 +323,7 @@ items: source: remote: path: TinyLife/Actions/SitAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanMultitask path: ../TinyLife/Actions/SitAction.cs diff --git a/docs/api/TinyLife.Actions.SocialAction.yml b/docs/api/TinyLife.Actions.SocialAction.yml index 47e81eb..0af973d 100644 --- a/docs/api/TinyLife.Actions.SocialAction.yml +++ b/docs/api/TinyLife.Actions.SocialAction.yml @@ -36,7 +36,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SocialAction path: ../TinyLife/Actions/SocialAction.cs @@ -143,7 +143,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsMain path: ../TinyLife/Actions/SocialAction.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Partner path: ../TinyLife/Actions/SocialAction.cs @@ -229,7 +229,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PartnerAction path: ../TinyLife/Actions/SocialAction.cs @@ -266,7 +266,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConversationTime path: ../TinyLife/Actions/SocialAction.cs @@ -315,7 +315,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InProgressTime path: ../TinyLife/Actions/SocialAction.cs @@ -356,7 +356,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Id path: ../TinyLife/Actions/SocialAction.cs @@ -403,7 +403,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PartnerCompletion path: ../TinyLife/Actions/SocialAction.cs @@ -436,7 +436,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/SocialAction.cs @@ -475,7 +475,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/SocialAction.cs @@ -513,7 +513,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpdateConversation path: ../TinyLife/Actions/SocialAction.cs @@ -557,7 +557,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsConversationCompleted path: ../TinyLife/Actions/SocialAction.cs @@ -594,7 +594,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitializeConversation path: ../TinyLife/Actions/SocialAction.cs @@ -628,7 +628,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMaxWaitTime path: ../TinyLife/Actions/SocialAction.cs @@ -665,7 +665,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/SocialAction.cs @@ -700,7 +700,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/SocialAction.cs @@ -745,7 +745,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/SocialAction.cs @@ -785,7 +785,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCancel path: ../TinyLife/Actions/SocialAction.cs @@ -827,7 +827,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/SocialAction.cs @@ -866,7 +866,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanMultitask path: ../TinyLife/Actions/SocialAction.cs @@ -908,7 +908,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Actions/SocialAction.cs @@ -946,7 +946,7 @@ items: source: remote: path: TinyLife/Actions/SocialAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InvokeForBoth path: ../TinyLife/Actions/SocialAction.cs diff --git a/docs/api/TinyLife.Actions.StoreAction.yml b/docs/api/TinyLife.Actions.StoreAction.yml index 8dd4875..87780e2 100644 --- a/docs/api/TinyLife.Actions.StoreAction.yml +++ b/docs/api/TinyLife.Actions.StoreAction.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StoreAction path: ../TinyLife/Actions/StoreAction.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Items path: ../TinyLife/Actions/StoreAction.cs @@ -165,7 +165,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/StoreAction.cs @@ -203,7 +203,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/StoreAction.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/StoreAction.cs @@ -283,7 +283,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/StoreAction.cs @@ -321,7 +321,7 @@ items: source: remote: path: TinyLife/Actions/StoreAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/StoreAction.cs diff --git a/docs/api/TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.yml b/docs/api/TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.yml index 6487fd2..9ba0932 100644 --- a/docs/api/TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.yml +++ b/docs/api/TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EvaluationResult path: ../TinyLife/Actions/TalkAction.cs diff --git a/docs/api/TinyLife.Actions.TalkAction.TalkSettings.yml b/docs/api/TinyLife.Actions.TalkAction.TalkSettings.yml index 3769e66..2c8b594 100644 --- a/docs/api/TinyLife.Actions.TalkAction.TalkSettings.yml +++ b/docs/api/TinyLife.Actions.TalkAction.TalkSettings.yml @@ -42,7 +42,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkSettings path: ../TinyLife/Actions/TalkAction.cs @@ -96,7 +96,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FriendshipGain path: ../TinyLife/Actions/TalkAction.cs @@ -129,7 +129,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoBadlyChance path: ../TinyLife/Actions/TalkAction.cs @@ -162,7 +162,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkMinutes path: ../TinyLife/Actions/TalkAction.cs @@ -195,7 +195,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmoteCategory path: ../TinyLife/Actions/TalkAction.cs @@ -228,7 +228,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpeakStyle path: ../TinyLife/Actions/TalkAction.cs @@ -261,7 +261,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PartnerEmoteCategory path: ../TinyLife/Actions/TalkAction.cs @@ -294,7 +294,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PartnerSpeakStyle path: ../TinyLife/Actions/TalkAction.cs @@ -327,7 +327,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GainedSkill path: ../TinyLife/Actions/TalkAction.cs @@ -360,7 +360,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GainSkillOnFailure path: ../TinyLife/Actions/TalkAction.cs @@ -393,7 +393,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RestoredNeed path: ../TinyLife/Actions/TalkAction.cs @@ -426,7 +426,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredEmotion path: ../TinyLife/Actions/TalkAction.cs @@ -459,7 +459,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredPersonality path: ../TinyLife/Actions/TalkAction.cs @@ -492,7 +492,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredSkill path: ../TinyLife/Actions/TalkAction.cs @@ -525,7 +525,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredAges path: ../TinyLife/Actions/TalkAction.cs @@ -558,7 +558,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredPartnerAges path: ../TinyLife/Actions/TalkAction.cs @@ -591,7 +591,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecute path: ../TinyLife/Actions/TalkAction.cs @@ -624,7 +624,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FailEmotion path: ../TinyLife/Actions/TalkAction.cs @@ -657,7 +657,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SuccessEmotion path: ../TinyLife/Actions/TalkAction.cs @@ -690,7 +690,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GainRomancePercentage path: ../TinyLife/Actions/TalkAction.cs @@ -723,7 +723,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LoweredEmotion path: ../TinyLife/Actions/TalkAction.cs @@ -756,7 +756,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnSuccess path: ../TinyLife/Actions/TalkAction.cs @@ -789,7 +789,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnFailure path: ../TinyLife/Actions/TalkAction.cs @@ -822,7 +822,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanDoRandomly path: ../TinyLife/Actions/TalkAction.cs @@ -855,7 +855,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/TalkAction.cs @@ -899,7 +899,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EvaluateFully path: ../TinyLife/Actions/TalkAction.cs @@ -937,7 +937,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EvaluateSimple path: ../TinyLife/Actions/TalkAction.cs @@ -984,7 +984,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CheckCanExecute path: ../TinyLife/Actions/TalkAction.cs diff --git a/docs/api/TinyLife.Actions.TalkAction.yml b/docs/api/TinyLife.Actions.TalkAction.yml index 2f327f8..971e9d8 100644 --- a/docs/api/TinyLife.Actions.TalkAction.yml +++ b/docs/api/TinyLife.Actions.TalkAction.yml @@ -27,7 +27,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TalkAction path: ../TinyLife/Actions/TalkAction.cs @@ -148,7 +148,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnEvaluate path: ../TinyLife/Actions/TalkAction.cs @@ -183,7 +183,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnTalkSuccess path: ../TinyLife/Actions/TalkAction.cs @@ -218,7 +218,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnTalkFailure path: ../TinyLife/Actions/TalkAction.cs @@ -253,7 +253,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Settings path: ../TinyLife/Actions/TalkAction.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/TalkAction.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpdateConversation path: ../TinyLife/Actions/TalkAction.cs @@ -374,7 +374,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/TalkAction.cs @@ -413,7 +413,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsConversationCompleted path: ../TinyLife/Actions/TalkAction.cs @@ -451,7 +451,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Create path: ../TinyLife/Actions/TalkAction.cs @@ -501,7 +501,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFunny path: ../TinyLife/Actions/TalkAction.cs @@ -557,7 +557,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateMean path: ../TinyLife/Actions/TalkAction.cs @@ -607,7 +607,7 @@ items: source: remote: path: TinyLife/Actions/TalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateRomantic path: ../TinyLife/Actions/TalkAction.cs diff --git a/docs/api/TinyLife.Actions.Typeless.PathfindToPersonAction.yml b/docs/api/TinyLife.Actions.Typeless.PathfindToPersonAction.yml index 07c37a5..daa878b 100644 --- a/docs/api/TinyLife.Actions.Typeless.PathfindToPersonAction.yml +++ b/docs/api/TinyLife.Actions.Typeless.PathfindToPersonAction.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PathfindToPersonAction path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -143,7 +143,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMaxPathfindTime path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -180,7 +180,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -215,7 +215,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -260,7 +260,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -302,7 +302,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs @@ -340,7 +340,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/PathfindToPersonAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Typeless/PathfindToPersonAction.cs diff --git a/docs/api/TinyLife.Actions.Typeless.SpawnItemInHandAction.yml b/docs/api/TinyLife.Actions.Typeless.SpawnItemInHandAction.yml index 958f329..9182835 100644 --- a/docs/api/TinyLife.Actions.Typeless.SpawnItemInHandAction.yml +++ b/docs/api/TinyLife.Actions.Typeless.SpawnItemInHandAction.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpawnItemInHandAction path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -108,7 +108,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ItemToSpawn path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -151,7 +151,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorsToSpawn path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -198,7 +198,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -239,7 +239,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -274,7 +274,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -312,7 +312,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs @@ -357,7 +357,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/SpawnItemInHandAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Typeless/SpawnItemInHandAction.cs diff --git a/docs/api/TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction.yml b/docs/api/TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction.yml index 6d7ea1d..78131e9 100644 --- a/docs/api/TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction.yml +++ b/docs/api/TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TellPeopleToLeaveRoomAction path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs @@ -108,7 +108,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExcludedPeople path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs @@ -153,7 +153,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs @@ -227,7 +227,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs @@ -265,7 +265,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs @@ -304,7 +304,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TryToLeaveRoom path: ../TinyLife/Actions/Typeless/TellPeopleToLeaveRoomAction.cs diff --git a/docs/api/TinyLife.Actions.Typeless.TypelessAction.yml b/docs/api/TinyLife.Actions.Typeless.TypelessAction.yml index 1e40b92..1fe744e 100644 --- a/docs/api/TinyLife.Actions.Typeless.TypelessAction.yml +++ b/docs/api/TinyLife.Actions.Typeless.TypelessAction.yml @@ -51,7 +51,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TypelessAction path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Random path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -158,7 +158,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Info path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -203,7 +203,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StartedAutomatically path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -250,7 +250,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsUnderlying path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -287,7 +287,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -324,7 +324,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -361,7 +361,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ElapsedTime path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -410,7 +410,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayerPromptOpen path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -447,7 +447,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InProgressTime path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -487,7 +487,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FullyInProgress path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -527,7 +527,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ForceFail path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -560,7 +560,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -596,7 +596,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -630,7 +630,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -674,7 +674,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -711,7 +711,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -749,7 +749,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -790,7 +790,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpenPlayerPrompt path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -847,7 +847,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpenYesNoPrompt path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -889,7 +889,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpenTextPrompt path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -940,7 +940,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpeakAlone path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -991,7 +991,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpeakInConversation path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1002,7 +1002,7 @@ items: summary: "\nHelper method to display emotes over each conversation partner in a back and forth fashion to make it seem like they are conversing.\nWhen used in , only the action that should call this method.\n" example: [] syntax: - content: public bool SpeakInConversation(Person partner, GameTime time, float speedMultiplier, EmoteCategory emoteCategories, SpeakStyle speakStyles, EmoteCategory? partnerEmoteCategories = null, SpeakStyle? partnerSpeakStyles = null, int totalAmount = 2147483647) + content: public bool SpeakInConversation(Person partner, GameTime time, float speedMultiplier, EmoteCategory emoteCategories, SpeakStyle speakStyles, EmoteCategory? partnerEmoteCategories = default(EmoteCategory? ), SpeakStyle? partnerSpeakStyles = default(SpeakStyle? ), int totalAmount = 2147483647) parameters: - id: partner type: TinyLife.Objects.Person @@ -1054,7 +1054,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CompleteInTime path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1105,7 +1105,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CompleteIfNeedFull path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1152,7 +1152,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PutDownOrGoTo path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1202,7 +1202,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPlaceDirection path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1246,7 +1246,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sit path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1296,7 +1296,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeChair path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1340,7 +1340,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeChairs path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1390,7 +1390,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindAllFreePeople path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1401,7 +1401,7 @@ items: summary: "\nA helper method to find a set of all instances that are currently valid for interaction with the passed \n" example: [] syntax: - content: public static IEnumerable FindAllFreePeople(Person person, ActionType type = null, Vector2? position = null, float? radius = null, bool ignoreVisibility = false) + content: public static IEnumerable FindAllFreePeople(Person person, ActionType type = null, Vector2? position = default(Vector2? ), float? radius = default(float? ), bool ignoreVisibility = false) parameters: - id: person type: TinyLife.Objects.Person @@ -1446,7 +1446,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindAllFreeFurniture path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1457,7 +1457,7 @@ items: summary: "\nA helper method to find a set of all instances that are currently valid for interaction with the passed \n" example: [] syntax: - content: public static IEnumerable FindAllFreeFurniture(Person person, ObjectCategory categories = null, FurnitureType objectSpotType = null, bool needsFreeActionSpot = true, Vector2? position = null, float? radius = null, bool allowBroken = false, bool ignoreVisibility = false) + content: public static IEnumerable FindAllFreeFurniture(Person person, ObjectCategory categories = null, FurnitureType objectSpotType = null, bool needsFreeActionSpot = true, Vector2? position = default(Vector2? ), float? radius = default(float? ), bool allowBroken = false, bool ignoreVisibility = false) parameters: - id: person type: TinyLife.Objects.Person @@ -1511,7 +1511,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindAllFreeWalls path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1522,7 +1522,7 @@ items: summary: "\nA helper method to find a set of all instances that are currently valid for interaction with the passed \n" example: [] syntax: - content: public static IEnumerable FindAllFreeWalls(Person person, Vector2? position = null, float? radius = null, bool ignoreVisibility = false) + content: public static IEnumerable FindAllFreeWalls(Person person, Vector2? position = default(Vector2? ), float? radius = default(float? ), bool ignoreVisibility = false) parameters: - id: person type: TinyLife.Objects.Person @@ -1564,7 +1564,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindAllFreeGround path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1575,7 +1575,7 @@ items: summary: "\nA helper method to find a set of all positions on the ground that are currently valid for interaction\n" example: [] syntax: - content: public static IEnumerable FindAllFreeGround(Person person, Vector2? position = null, float? radius = null, bool ignoreVisibility = false) + content: public static IEnumerable FindAllFreeGround(Person person, Vector2? position = default(Vector2? ), float? radius = default(float? ), bool ignoreVisibility = false) parameters: - id: person type: TinyLife.Objects.Person @@ -1617,7 +1617,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindFreeFurniture path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1628,7 +1628,7 @@ items: summary: "\nA helper method to find the best instance to interact with based on the given data.\nNote that this method always returns a related to the first result from .\n" example: [] syntax: - content: public static ActionInfo FindFreeFurniture(Person person, ObjectCategory categories, FurnitureType objectSpotType = null, Vector2? position = null, bool allowBroken = false, bool ignoreVisibility = false) + content: public static ActionInfo FindFreeFurniture(Person person, ObjectCategory categories, FurnitureType objectSpotType = null, Vector2? position = default(Vector2? ), bool allowBroken = false, bool ignoreVisibility = false) parameters: - id: person type: TinyLife.Objects.Person @@ -1676,7 +1676,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetTableSpot path: ../TinyLife/Actions/Typeless/TypelessAction.cs @@ -1720,7 +1720,7 @@ items: source: remote: path: TinyLife/Actions/Typeless/TypelessAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InvokeForBoth path: ../TinyLife/Actions/Typeless/TypelessAction.cs diff --git a/docs/api/TinyLife.Actions.WalkAction.yml b/docs/api/TinyLife.Actions.WalkAction.yml index cb3f28b..58c9635 100644 --- a/docs/api/TinyLife.Actions.WalkAction.yml +++ b/docs/api/TinyLife.Actions.WalkAction.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Actions/WalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WalkAction path: ../TinyLife/Actions/WalkAction.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Actions/WalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrainEnergy path: ../TinyLife/Actions/WalkAction.cs @@ -169,7 +169,7 @@ items: source: remote: path: TinyLife/Actions/WalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/WalkAction.cs @@ -208,7 +208,7 @@ items: source: remote: path: TinyLife/Actions/WalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindPath path: ../TinyLife/Actions/WalkAction.cs @@ -250,7 +250,7 @@ items: source: remote: path: TinyLife/Actions/WalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSpeed path: ../TinyLife/Actions/WalkAction.cs @@ -288,7 +288,7 @@ items: source: remote: path: TinyLife/Actions/WalkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Actions/WalkAction.cs diff --git a/docs/api/TinyLife.Actions.WatchTvAction.Channel.yml b/docs/api/TinyLife.Actions.WatchTvAction.Channel.yml index cfbe10f..ecf4b69 100644 --- a/docs/api/TinyLife.Actions.WatchTvAction.Channel.yml +++ b/docs/api/TinyLife.Actions.WatchTvAction.Channel.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Channel path: ../TinyLife/Actions/WatchTvAction.cs @@ -56,7 +56,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Comedy path: ../TinyLife/Actions/WatchTvAction.cs @@ -90,7 +90,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cooking path: ../TinyLife/Actions/WatchTvAction.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Romance path: ../TinyLife/Actions/WatchTvAction.cs @@ -158,7 +158,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Drama path: ../TinyLife/Actions/WatchTvAction.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: News path: ../TinyLife/Actions/WatchTvAction.cs @@ -226,7 +226,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cartoons path: ../TinyLife/Actions/WatchTvAction.cs diff --git a/docs/api/TinyLife.Actions.WatchTvAction.yml b/docs/api/TinyLife.Actions.WatchTvAction.yml index cbab227..e512e86 100644 --- a/docs/api/TinyLife.Actions.WatchTvAction.yml +++ b/docs/api/TinyLife.Actions.WatchTvAction.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WatchTvAction path: ../TinyLife/Actions/WatchTvAction.cs @@ -131,7 +131,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FullyInProgress path: ../TinyLife/Actions/WatchTvAction.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/WatchTvAction.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateFirstActions path: ../TinyLife/Actions/WatchTvAction.cs @@ -248,7 +248,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/WatchTvAction.cs @@ -283,7 +283,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenUpdate path: ../TinyLife/Actions/WatchTvAction.cs @@ -328,7 +328,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/WatchTvAction.cs @@ -366,7 +366,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanMultitask path: ../TinyLife/Actions/WatchTvAction.cs @@ -408,7 +408,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/WatchTvAction.cs @@ -447,7 +447,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetViewingArea path: ../TinyLife/Actions/WatchTvAction.cs @@ -491,7 +491,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSeating path: ../TinyLife/Actions/WatchTvAction.cs @@ -538,7 +538,7 @@ items: source: remote: path: TinyLife/Actions/WatchTvAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetViewers path: ../TinyLife/Actions/WatchTvAction.cs diff --git a/docs/api/TinyLife.Actions.WorkAction.yml b/docs/api/TinyLife.Actions.WorkAction.yml index b853461..0ac37f4 100644 --- a/docs/api/TinyLife.Actions.WorkAction.yml +++ b/docs/api/TinyLife.Actions.WorkAction.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Actions/WorkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkAction path: ../TinyLife/Actions/WorkAction.cs @@ -131,7 +131,7 @@ items: source: remote: path: TinyLife/Actions/WorkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/WorkAction.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Actions/WorkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PreInitialize path: ../TinyLife/Actions/WorkAction.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Actions/WorkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenInitialize path: ../TinyLife/Actions/WorkAction.cs @@ -237,7 +237,7 @@ items: source: remote: path: TinyLife/Actions/WorkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenIsCompleted path: ../TinyLife/Actions/WorkAction.cs @@ -275,7 +275,7 @@ items: source: remote: path: TinyLife/Actions/WorkAction.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AndThenOnCompleted path: ../TinyLife/Actions/WorkAction.cs diff --git a/docs/api/TinyLife.Debug.CheatDelegate.yml b/docs/api/TinyLife.Debug.CheatDelegate.yml index 5975252..5b56345 100644 --- a/docs/api/TinyLife.Debug.CheatDelegate.yml +++ b/docs/api/TinyLife.Debug.CheatDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Debug.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CheatDelegate path: ../TinyLife/Debug.cs diff --git a/docs/api/TinyLife.Debug.DebugDelegate.yml b/docs/api/TinyLife.Debug.DebugDelegate.yml index abaee77..d8a60c1 100644 --- a/docs/api/TinyLife.Debug.DebugDelegate.yml +++ b/docs/api/TinyLife.Debug.DebugDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Debug.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DebugDelegate path: ../TinyLife/Debug.cs diff --git a/docs/api/TinyLife.Debug.yml b/docs/api/TinyLife.Debug.yml index 07a98ee..bb0bfcf 100644 --- a/docs/api/TinyLife.Debug.yml +++ b/docs/api/TinyLife.Debug.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Debug.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Debug path: ../TinyLife/Debug.cs @@ -63,7 +63,7 @@ items: source: remote: path: TinyLife/Debug.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cheats path: ../TinyLife/Debug.cs @@ -100,7 +100,7 @@ items: source: remote: path: TinyLife/Debug.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DebugLines path: ../TinyLife/Debug.cs @@ -137,7 +137,7 @@ items: source: remote: path: TinyLife/Debug.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TryCheat path: ../TinyLife/Debug.cs diff --git a/docs/api/TinyLife.Emotions.EmotionModifier.Instance.yml b/docs/api/TinyLife.Emotions.EmotionModifier.Instance.yml index f3be512..fd3fcea 100644 --- a/docs/api/TinyLife.Emotions.EmotionModifier.Instance.yml +++ b/docs/api/TinyLife.Emotions.EmotionModifier.Instance.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Instance path: ../TinyLife/Emotions/EmotionModifier.cs @@ -77,7 +77,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Emotions/EmotionModifier.cs @@ -122,7 +122,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Amount path: ../TinyLife/Emotions/EmotionModifier.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TotalTime path: ../TinyLife/Emotions/EmotionModifier.cs @@ -212,7 +212,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Time path: ../TinyLife/Emotions/EmotionModifier.cs @@ -259,7 +259,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Source path: ../TinyLife/Emotions/EmotionModifier.cs @@ -296,7 +296,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassTime path: ../TinyLife/Emotions/EmotionModifier.cs @@ -332,7 +332,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Emotions/EmotionModifier.cs diff --git a/docs/api/TinyLife.Emotions.EmotionModifier.yml b/docs/api/TinyLife.Emotions.EmotionModifier.yml index bf0a5dd..d17266e 100644 --- a/docs/api/TinyLife.Emotions.EmotionModifier.yml +++ b/docs/api/TinyLife.Emotions.EmotionModifier.yml @@ -138,7 +138,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmotionModifier path: ../TinyLife/Emotions/EmotionModifier.cs @@ -189,7 +189,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Emotions/EmotionModifier.cs @@ -226,7 +226,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Asleep path: ../TinyLife/Emotions/EmotionModifier.cs @@ -261,7 +261,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PeedSelf path: ../TinyLife/Emotions/EmotionModifier.cs @@ -296,7 +296,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassedOut path: ../TinyLife/Emotions/EmotionModifier.cs @@ -331,7 +331,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ReadBook path: ../TinyLife/Emotions/EmotionModifier.cs @@ -366,7 +366,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FailedJoke path: ../TinyLife/Emotions/EmotionModifier.cs @@ -401,7 +401,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtyDishes path: ../TinyLife/Emotions/EmotionModifier.cs @@ -436,7 +436,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BadCreation path: ../TinyLife/Emotions/EmotionModifier.cs @@ -471,7 +471,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BadCreationAngry path: ../TinyLife/Emotions/EmotionModifier.cs @@ -506,7 +506,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PerfectCreation path: ../TinyLife/Emotions/EmotionModifier.cs @@ -541,7 +541,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FriendDied path: ../TinyLife/Emotions/EmotionModifier.cs @@ -576,7 +576,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SleptOutside path: ../TinyLife/Emotions/EmotionModifier.cs @@ -611,7 +611,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtyConversationPartner path: ../TinyLife/Emotions/EmotionModifier.cs @@ -646,7 +646,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CaughtBeingInappropriate path: ../TinyLife/Emotions/EmotionModifier.cs @@ -681,7 +681,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BoringWork path: ../TinyLife/Emotions/EmotionModifier.cs @@ -716,7 +716,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SawSomethingPersonal path: ../TinyLife/Emotions/EmotionModifier.cs @@ -751,7 +751,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoodFood path: ../TinyLife/Emotions/EmotionModifier.cs @@ -786,7 +786,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PleasantInteraction path: ../TinyLife/Emotions/EmotionModifier.cs @@ -821,7 +821,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LovelyInteraction path: ../TinyLife/Emotions/EmotionModifier.cs @@ -856,7 +856,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FailedRomance path: ../TinyLife/Emotions/EmotionModifier.cs @@ -891,7 +891,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StartedDating path: ../TinyLife/Emotions/EmotionModifier.cs @@ -926,7 +926,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BrokenUpWith path: ../TinyLife/Emotions/EmotionModifier.cs @@ -961,7 +961,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Promoted path: ../TinyLife/Emotions/EmotionModifier.cs @@ -996,7 +996,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Demoted path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1031,7 +1031,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fired path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1066,7 +1066,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BadFood path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1101,7 +1101,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FunFoolingAround path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1136,7 +1136,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FinishedMod path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1171,7 +1171,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FinishedApp path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1206,7 +1206,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HackingFail path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1241,7 +1241,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PositiveGauge path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1276,7 +1276,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NegativeGauge path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1311,7 +1311,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MeanConversationPartner path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1346,7 +1346,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RepairFail path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1381,7 +1381,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoolAroundFail path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1416,7 +1416,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WritersBlock path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1451,7 +1451,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FinishedBook path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1486,7 +1486,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ScrappedBook path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1521,7 +1521,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SuccessfullyPublished path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1556,7 +1556,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FailedPublishing path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1591,7 +1591,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InspiringIdeas path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1626,7 +1626,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreativelyInspired path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1661,7 +1661,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StrokeOfGenius path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1696,7 +1696,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IntrovertedOverstimulated path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1731,7 +1731,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InspiredByPride path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1766,7 +1766,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TvInspiredToCook path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1801,7 +1801,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TvSaddenedByNews path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1836,7 +1836,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TvExcitedByNews path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1871,7 +1871,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TvRomantic path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1906,7 +1906,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoodWalkthrough path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1941,7 +1941,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BoringWalkthrough path: ../TinyLife/Emotions/EmotionModifier.cs @@ -1976,7 +1976,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BadTeammates path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2011,7 +2011,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RageQuit path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2046,7 +2046,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WonTournament path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2081,7 +2081,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LostTournament path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2116,7 +2116,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AsexualFoolingPartner path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2151,7 +2151,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AsexualFoolingDeclined path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2186,7 +2186,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoolingDeclined path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2221,7 +2221,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EnergizingJog path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2256,7 +2256,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EnergizingDumbbells path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2291,7 +2291,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PulledMuscle path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2326,7 +2326,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StandingDeskPositive path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2361,7 +2361,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StandingDeskSore path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2396,7 +2396,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FitnessLevelUp path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2431,7 +2431,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LazyWorkout path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2466,7 +2466,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeEnergetic path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2501,7 +2501,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeFrisky path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2536,7 +2536,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeFocused path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2571,7 +2571,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeFine path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2606,7 +2606,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooMuchProtein path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2641,7 +2641,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeFriskyAsexual path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2676,7 +2676,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtyHandsAfterToilet path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2711,7 +2711,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DarkRoom path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2746,7 +2746,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ThrewAwayInsteadOfCleaning path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2781,7 +2781,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IntrovertedCloseConversation path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2816,7 +2816,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IntrovertedStrangerDanger path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2851,7 +2851,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IntrovertedHomeLong path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2886,7 +2886,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExtrovertedNewRelationship path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2921,7 +2921,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExtrovertedConfusedByIntroversion path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2956,7 +2956,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtyObject path: ../TinyLife/Emotions/EmotionModifier.cs @@ -2991,7 +2991,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UncomfortableCraftedFurniture path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3026,7 +3026,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AmazingCraftedFurniture path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3061,7 +3061,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelfCraftedFurniture path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3096,7 +3096,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingSplinter path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3131,7 +3131,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ScrappedSomeonesProject path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3166,7 +3166,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoughSchoolDay path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3201,7 +3201,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FunSchoolDay path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3236,7 +3236,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TerribleAtSchool path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3271,7 +3271,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GradesDown path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3306,7 +3306,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GradesUp path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3341,7 +3341,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BoringHomework path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3376,7 +3376,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ForgotHomework path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3411,7 +3411,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InterestingStory path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3446,7 +3446,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FunnyCartoons path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3481,7 +3481,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FunPlaying path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3516,7 +3516,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InspiringPlaying path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3551,7 +3551,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PsychedUp path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3586,7 +3586,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AggravatingConversation path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3621,7 +3621,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpsettingConversation path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3656,7 +3656,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HadToGetFoodSomewhereElse path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3691,7 +3691,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UsefulProgrammingResearch path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3726,7 +3726,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PublishedApp path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3761,7 +3761,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmergencyFood path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3796,7 +3796,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChildChef path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3831,7 +3831,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SomeoneTriedMyFood path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3866,7 +3866,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BadChildFood path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3901,7 +3901,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoodChildFood path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3936,7 +3936,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SandboxPositive path: ../TinyLife/Emotions/EmotionModifier.cs @@ -3971,7 +3971,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SandboxNegative path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4006,7 +4006,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SandboxSocialPositive path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4041,7 +4041,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SandboxSocialNegative path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4076,7 +4076,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PuzzlePositive path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4111,7 +4111,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PuzzleNegative path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4146,7 +4146,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PuzzleNegativeChild path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4181,7 +4181,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShoodChild path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4216,7 +4216,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4251,7 +4251,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4286,7 +4286,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Emotion path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4321,7 +4321,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Condition path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4356,7 +4356,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4404,7 +4404,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4452,7 +4452,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCausedEmotion path: ../TinyLife/Emotions/EmotionModifier.cs @@ -4491,7 +4491,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionModifier.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Emotions/EmotionModifier.cs diff --git a/docs/api/TinyLife.Emotions.EmotionType.TypeCategory.yml b/docs/api/TinyLife.Emotions.EmotionType.TypeCategory.yml index 19f24a3..99b3917 100644 --- a/docs/api/TinyLife.Emotions.EmotionType.TypeCategory.yml +++ b/docs/api/TinyLife.Emotions.EmotionType.TypeCategory.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TypeCategory path: ../TinyLife/Emotions/EmotionType.cs @@ -53,7 +53,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Negative path: ../TinyLife/Emotions/EmotionType.cs @@ -87,7 +87,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Positive path: ../TinyLife/Emotions/EmotionType.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Neutral path: ../TinyLife/Emotions/EmotionType.cs diff --git a/docs/api/TinyLife.Emotions.EmotionType.yml b/docs/api/TinyLife.Emotions.EmotionType.yml index 014ed97..bdc4777 100644 --- a/docs/api/TinyLife.Emotions.EmotionType.yml +++ b/docs/api/TinyLife.Emotions.EmotionType.yml @@ -35,7 +35,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmotionType path: ../TinyLife/Emotions/EmotionType.cs @@ -86,7 +86,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Emotions/EmotionType.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fine path: ../TinyLife/Emotions/EmotionType.cs @@ -158,7 +158,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Uncomfortable path: ../TinyLife/Emotions/EmotionType.cs @@ -193,7 +193,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Asleep path: ../TinyLife/Emotions/EmotionType.cs @@ -228,7 +228,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Happy path: ../TinyLife/Emotions/EmotionType.cs @@ -263,7 +263,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Embarrassed path: ../TinyLife/Emotions/EmotionType.cs @@ -298,7 +298,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sad path: ../TinyLife/Emotions/EmotionType.cs @@ -333,7 +333,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bored path: ../TinyLife/Emotions/EmotionType.cs @@ -368,7 +368,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Frisky path: ../TinyLife/Emotions/EmotionType.cs @@ -403,7 +403,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Creative path: ../TinyLife/Emotions/EmotionType.cs @@ -438,7 +438,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Focused path: ../TinyLife/Emotions/EmotionType.cs @@ -473,7 +473,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Stunned path: ../TinyLife/Emotions/EmotionType.cs @@ -508,7 +508,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Angry path: ../TinyLife/Emotions/EmotionType.cs @@ -543,7 +543,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Energetic path: ../TinyLife/Emotions/EmotionType.cs @@ -578,7 +578,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Emotions/EmotionType.cs @@ -613,7 +613,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/Emotions/EmotionType.cs @@ -648,7 +648,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Color path: ../TinyLife/Emotions/EmotionType.cs @@ -683,7 +683,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Category path: ../TinyLife/Emotions/EmotionType.cs @@ -718,7 +718,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Emotions/EmotionType.cs @@ -763,7 +763,7 @@ items: source: remote: path: TinyLife/Emotions/EmotionType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Emotions/EmotionType.cs diff --git a/docs/api/TinyLife.Emotions.IEmotionSource.yml b/docs/api/TinyLife.Emotions.IEmotionSource.yml index 3cc3453..1e12f27 100644 --- a/docs/api/TinyLife.Emotions.IEmotionSource.yml +++ b/docs/api/TinyLife.Emotions.IEmotionSource.yml @@ -16,7 +16,7 @@ items: source: remote: path: TinyLife/Emotions/IEmotionSource.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IEmotionSource path: ../TinyLife/Emotions/IEmotionSource.cs @@ -51,7 +51,7 @@ items: source: remote: path: TinyLife/Emotions/IEmotionSource.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SourceString path: ../TinyLife/Emotions/IEmotionSource.cs diff --git a/docs/api/TinyLife.GameImpl.GameMode.yml b/docs/api/TinyLife.GameImpl.GameMode.yml index e04d21e..23859a8 100644 --- a/docs/api/TinyLife.GameImpl.GameMode.yml +++ b/docs/api/TinyLife.GameImpl.GameMode.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GameMode path: ../TinyLife/GameImpl.cs @@ -55,7 +55,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Splash path: ../TinyLife/GameImpl.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MainMenu path: ../TinyLife/GameImpl.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectHousehold path: ../TinyLife/GameImpl.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InGameHousehold path: ../TinyLife/GameImpl.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuildOnly path: ../TinyLife/GameImpl.cs diff --git a/docs/api/TinyLife.GameImpl.yml b/docs/api/TinyLife.GameImpl.yml index 2162337..92474b8 100644 --- a/docs/api/TinyLife.GameImpl.yml +++ b/docs/api/TinyLife.GameImpl.yml @@ -42,7 +42,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GameImpl path: ../TinyLife/GameImpl.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Version path: ../TinyLife/GameImpl.cs @@ -177,7 +177,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Instance path: ../TinyLife/GameImpl.cs @@ -216,7 +216,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GraphicsMetrics path: ../TinyLife/GameImpl.cs @@ -253,7 +253,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Camera path: ../TinyLife/GameImpl.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Listener path: ../TinyLife/GameImpl.cs @@ -327,7 +327,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/GameImpl.cs @@ -364,7 +364,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentTool path: ../TinyLife/GameImpl.cs @@ -401,7 +401,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentTime path: ../TinyLife/GameImpl.cs @@ -438,7 +438,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Weekday path: ../TinyLife/GameImpl.cs @@ -475,7 +475,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentHousehold path: ../TinyLife/GameImpl.cs @@ -512,7 +512,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Money path: ../TinyLife/GameImpl.cs @@ -549,7 +549,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentLot path: ../TinyLife/GameImpl.cs @@ -586,7 +586,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Speed path: ../TinyLife/GameImpl.cs @@ -623,7 +623,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FollowingPerson path: ../TinyLife/GameImpl.cs @@ -660,7 +660,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SaveName path: ../TinyLife/GameImpl.cs @@ -697,7 +697,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mode path: ../TinyLife/GameImpl.cs @@ -734,7 +734,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LoadContent path: ../TinyLife/GameImpl.cs @@ -768,7 +768,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DoUpdate path: ../TinyLife/GameImpl.cs @@ -805,7 +805,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DoDraw path: ../TinyLife/GameImpl.cs @@ -842,7 +842,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dispose path: ../TinyLife/GameImpl.cs @@ -879,7 +879,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitializeDefaultUiStyle path: ../TinyLife/GameImpl.cs @@ -918,7 +918,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsMouseOnUi path: ../TinyLife/GameImpl.cs @@ -953,7 +953,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SwitchGameMode path: ../TinyLife/GameImpl.cs @@ -989,7 +989,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBeExtremelyFast path: ../TinyLife/GameImpl.cs @@ -1024,7 +1024,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanSwitchGameModes path: ../TinyLife/GameImpl.cs @@ -1059,7 +1059,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FadeKeyboardLighting path: ../TinyLife/GameImpl.cs @@ -1095,7 +1095,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TakeScreenshot path: ../TinyLife/GameImpl.cs @@ -1106,7 +1106,7 @@ items: summary: "\nTakes a screenshot and stores it in the default location, using a file name that contains the current date and time\n" example: [] syntax: - content: public void TakeScreenshot(Point size, RectangleF? visibleArea = null, Matrix? visibleMatrix = null, RenderTarget2D lightmap = null) + content: public void TakeScreenshot(Point size, RectangleF? visibleArea = default(RectangleF? ), Matrix? visibleMatrix = default(Matrix? ), RenderTarget2D lightmap = null) parameters: - id: size type: Microsoft.Xna.Framework.Point diff --git a/docs/api/TinyLife.GameSpeed.yml b/docs/api/TinyLife.GameSpeed.yml index 88b58ba..4f112b3 100644 --- a/docs/api/TinyLife.GameSpeed.yml +++ b/docs/api/TinyLife.GameSpeed.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GameSpeed path: ../TinyLife/Options.cs @@ -55,7 +55,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Paused path: ../TinyLife/Options.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Regular path: ../TinyLife/Options.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fast path: ../TinyLife/Options.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VeryFast path: ../TinyLife/Options.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExtremelyFast path: ../TinyLife/Options.cs diff --git a/docs/api/TinyLife.GenealogyType.yml b/docs/api/TinyLife.GenealogyType.yml index 37b0fe8..e69e78c 100644 --- a/docs/api/TinyLife.GenealogyType.yml +++ b/docs/api/TinyLife.GenealogyType.yml @@ -24,7 +24,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GenealogyType path: ../TinyLife/Relationship.cs @@ -61,7 +61,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Unrelated path: ../TinyLife/Relationship.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Parent path: ../TinyLife/Relationship.cs @@ -129,7 +129,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Child path: ../TinyLife/Relationship.cs @@ -163,7 +163,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sibling path: ../TinyLife/Relationship.cs @@ -197,7 +197,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Nibling path: ../TinyLife/Relationship.cs @@ -231,7 +231,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pibling path: ../TinyLife/Relationship.cs @@ -265,7 +265,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Grandparent path: ../TinyLife/Relationship.cs @@ -299,7 +299,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Grandchild path: ../TinyLife/Relationship.cs @@ -333,7 +333,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DistantlyRelated path: ../TinyLife/Relationship.cs diff --git a/docs/api/TinyLife.Goals.AmountGoal.yml b/docs/api/TinyLife.Goals.AmountGoal.yml index 55852f2..865964b 100644 --- a/docs/api/TinyLife.Goals.AmountGoal.yml +++ b/docs/api/TinyLife.Goals.AmountGoal.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Goals/AmountGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AmountGoal path: ../TinyLife/Goals/AmountGoal.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Goals/AmountGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/AmountGoal.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/Goals/AmountGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/AmountGoal.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Goals/AmountGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/AmountGoal.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Goals/AmountGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/AmountGoal.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Goals/AmountGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/AmountGoal.cs diff --git a/docs/api/TinyLife.Goals.AutoGoalInfo.yml b/docs/api/TinyLife.Goals.AutoGoalInfo.yml index b95c4ad..66b4a7e 100644 --- a/docs/api/TinyLife.Goals.AutoGoalInfo.yml +++ b/docs/api/TinyLife.Goals.AutoGoalInfo.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AutoGoalInfo path: ../TinyLife/Goals/GoalInfo.cs @@ -80,7 +80,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Triggers path: ../TinyLife/Goals/GoalInfo.cs @@ -115,7 +115,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Condition path: ../TinyLife/Goals/GoalInfo.cs @@ -150,7 +150,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Timed path: ../TinyLife/Goals/GoalInfo.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Amount path: ../TinyLife/Goals/GoalInfo.cs @@ -262,7 +262,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Distinct path: ../TinyLife/Goals/GoalInfo.cs @@ -321,7 +321,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Distinct path: ../TinyLife/Goals/GoalInfo.cs @@ -380,7 +380,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Conditioned path: ../TinyLife/Goals/GoalInfo.cs @@ -433,7 +433,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/GoalInfo.cs diff --git a/docs/api/TinyLife.Goals.AutoTriggerGoal-1.yml b/docs/api/TinyLife.Goals.AutoTriggerGoal-1.yml index 340628d..db7c317 100644 --- a/docs/api/TinyLife.Goals.AutoTriggerGoal-1.yml +++ b/docs/api/TinyLife.Goals.AutoTriggerGoal-1.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AutoTriggerGoal path: ../TinyLife/Goals/AutoTriggerGoal.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AutoInfo path: ../TinyLife/Goals/AutoTriggerGoal.cs @@ -130,7 +130,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/AutoTriggerGoal.cs @@ -168,7 +168,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/AutoTriggerGoal.cs @@ -208,7 +208,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/AutoTriggerGoal.cs @@ -252,7 +252,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/AutoTriggerGoal.cs @@ -301,7 +301,7 @@ items: source: remote: path: TinyLife/Goals/AutoTriggerGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/AutoTriggerGoal.cs diff --git a/docs/api/TinyLife.Goals.ConditionedGoal.yml b/docs/api/TinyLife.Goals.ConditionedGoal.yml index 4dede56..70c5b81 100644 --- a/docs/api/TinyLife.Goals.ConditionedGoal.yml +++ b/docs/api/TinyLife.Goals.ConditionedGoal.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Goals/ConditionedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConditionedGoal path: ../TinyLife/Goals/ConditionedGoal.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Goals/ConditionedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/ConditionedGoal.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/Goals/ConditionedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/ConditionedGoal.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Goals/ConditionedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/ConditionedGoal.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Goals/ConditionedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/ConditionedGoal.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Goals/ConditionedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/ConditionedGoal.cs diff --git a/docs/api/TinyLife.Goals.DistinctGoal.yml b/docs/api/TinyLife.Goals.DistinctGoal.yml index fde131d..4511cbb 100644 --- a/docs/api/TinyLife.Goals.DistinctGoal.yml +++ b/docs/api/TinyLife.Goals.DistinctGoal.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DistinctGoal path: ../TinyLife/Goals/DistinctGoal.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/DistinctGoal.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/DistinctGoal.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/DistinctGoal.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/DistinctGoal.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/DistinctGoal.cs @@ -272,7 +272,7 @@ items: source: remote: path: TinyLife/Goals/DistinctGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/DistinctGoal.cs diff --git a/docs/api/TinyLife.Goals.Goal.yml b/docs/api/TinyLife.Goals.Goal.yml index 9f5117f..1e3f228 100644 --- a/docs/api/TinyLife.Goals.Goal.yml +++ b/docs/api/TinyLife.Goals.Goal.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goal path: ../TinyLife/Goals/Goal.cs @@ -91,7 +91,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/Goal.cs @@ -136,7 +136,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Set path: ../TinyLife/Goals/Goal.cs @@ -173,7 +173,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Info path: ../TinyLife/Goals/Goal.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Goal.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/Goal.cs @@ -286,7 +286,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/Goal.cs @@ -320,7 +320,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/Goal.cs @@ -357,7 +357,7 @@ items: source: remote: path: TinyLife/Goals/Goal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/Goal.cs diff --git a/docs/api/TinyLife.Goals.GoalInfo.yml b/docs/api/TinyLife.Goals.GoalInfo.yml index f410cd4..2d7d922 100644 --- a/docs/api/TinyLife.Goals.GoalInfo.yml +++ b/docs/api/TinyLife.Goals.GoalInfo.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoalInfo path: ../TinyLife/Goals/GoalInfo.cs @@ -74,7 +74,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/GoalInfo.cs @@ -109,7 +109,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/GoalInfo.cs @@ -151,7 +151,7 @@ items: source: remote: path: TinyLife/Goals/GoalInfo.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/Goals/GoalInfo.cs diff --git a/docs/api/TinyLife.Goals.GoalSet.yml b/docs/api/TinyLife.Goals.GoalSet.yml index be4877a..4bb50a1 100644 --- a/docs/api/TinyLife.Goals.GoalSet.yml +++ b/docs/api/TinyLife.Goals.GoalSet.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoalSet path: ../TinyLife/Goals/GoalSet.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Info path: ../TinyLife/Goals/GoalSet.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Goals/GoalSet.cs @@ -163,7 +163,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/GoalSet.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/GoalSet.cs @@ -237,7 +237,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Goals/GoalSet.cs @@ -272,7 +272,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/GoalSet.cs @@ -304,7 +304,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetGoals path: ../TinyLife/Goals/GoalSet.cs @@ -347,7 +347,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetGoal path: ../TinyLife/Goals/GoalSet.cs @@ -394,7 +394,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetGoal path: ../TinyLife/Goals/GoalSet.cs @@ -437,7 +437,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplay path: ../TinyLife/Goals/GoalSet.cs @@ -476,7 +476,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/GoalSet.cs diff --git a/docs/api/TinyLife.Goals.GoalSetInfo.yml b/docs/api/TinyLife.Goals.GoalSetInfo.yml index 6f8cda2..841eeb7 100644 --- a/docs/api/TinyLife.Goals.GoalSetInfo.yml +++ b/docs/api/TinyLife.Goals.GoalSetInfo.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoalSetInfo path: ../TinyLife/Goals/GoalSet.cs @@ -72,7 +72,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Configurations path: ../TinyLife/Goals/GoalSet.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/GoalSet.cs @@ -146,7 +146,7 @@ items: source: remote: path: TinyLife/Goals/GoalSet.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/Goals/GoalSet.cs diff --git a/docs/api/TinyLife.Goals.GoalTrigger.yml b/docs/api/TinyLife.Goals.GoalTrigger.yml index 3f63923..d18de49 100644 --- a/docs/api/TinyLife.Goals.GoalTrigger.yml +++ b/docs/api/TinyLife.Goals.GoalTrigger.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Goals/GoalTrigger.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoalTrigger path: ../TinyLife/Goals/GoalTrigger.cs @@ -65,7 +65,7 @@ items: source: remote: path: TinyLife/Goals/GoalTrigger.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonUpdate path: ../TinyLife/Goals/GoalTrigger.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/Goals/GoalTrigger.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureCreated path: ../TinyLife/Goals/GoalTrigger.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/Goals/GoalTrigger.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionCompleted path: ../TinyLife/Goals/GoalTrigger.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Goals/GoalTrigger.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionUpdate path: ../TinyLife/Goals/GoalTrigger.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/Goals/GoalTrigger.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EarnMoney path: ../TinyLife/Goals/GoalTrigger.cs diff --git a/docs/api/TinyLife.Goals.Job.yml b/docs/api/TinyLife.Goals.Job.yml index 345339a..23b06fe 100644 --- a/docs/api/TinyLife.Goals.Job.yml +++ b/docs/api/TinyLife.Goals.Job.yml @@ -27,7 +27,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Job path: ../TinyLife/Goals/Job.cs @@ -90,7 +90,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Goals/Job.cs @@ -135,7 +135,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Goals/Job.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Performance path: ../TinyLife/Goals/Job.cs @@ -219,7 +219,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Level path: ../TinyLife/Goals/Job.cs @@ -266,7 +266,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DailyTasks path: ../TinyLife/Goals/Job.cs @@ -313,7 +313,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentHourlyPay path: ../TinyLife/Goals/Job.cs @@ -350,7 +350,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Job.cs @@ -392,7 +392,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Goals/Job.cs @@ -428,7 +428,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddPerformance path: ../TinyLife/Goals/Job.cs @@ -464,7 +464,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddLevel path: ../TinyLife/Goals/Job.cs @@ -500,7 +500,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasRequiredPromotionSkills path: ../TinyLife/Goals/Job.cs @@ -535,7 +535,7 @@ items: source: remote: path: TinyLife/Goals/Job.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/Job.cs diff --git a/docs/api/TinyLife.Goals.JobType.yml b/docs/api/TinyLife.Goals.JobType.yml index c7b7f07..ee8f2b2 100644 --- a/docs/api/TinyLife.Goals.JobType.yml +++ b/docs/api/TinyLife.Goals.JobType.yml @@ -41,7 +41,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JobType path: ../TinyLife/Goals/JobType.cs @@ -103,7 +103,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Goals/JobType.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PrimarySchoolStudent path: ../TinyLife/Goals/JobType.cs @@ -175,7 +175,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/JobType.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HourlyPay path: ../TinyLife/Goals/JobType.cs @@ -245,7 +245,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkHours path: ../TinyLife/Goals/JobType.cs @@ -280,7 +280,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OffWorkDays path: ../TinyLife/Goals/JobType.cs @@ -315,7 +315,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredPromotionSkills path: ../TinyLife/Goals/JobType.cs @@ -352,7 +352,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxLevel path: ../TinyLife/Goals/JobType.cs @@ -389,7 +389,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasSpecialLocalization path: ../TinyLife/Goals/JobType.cs @@ -426,7 +426,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredAges path: ../TinyLife/Goals/JobType.cs @@ -463,7 +463,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanQuitOrBeFired path: ../TinyLife/Goals/JobType.cs @@ -500,7 +500,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DailyTasks path: ../TinyLife/Goals/JobType.cs @@ -537,7 +537,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DailyTaskImportance path: ../TinyLife/Goals/JobType.cs @@ -574,7 +574,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SourceString path: ../TinyLife/Goals/JobType.cs @@ -613,7 +613,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/JobType.cs @@ -661,7 +661,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/Goals/JobType.cs @@ -703,7 +703,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsTimeToWork path: ../TinyLife/Goals/JobType.cs @@ -714,7 +714,7 @@ items: summary: "\nReturns whether the given time (or the game's current time) is in the bounds of and outside of the bounds of .\nIf this method returns true, can be started.\n" example: [] syntax: - content: public virtual bool IsTimeToWork(TimeSpan? time = null) + content: public virtual bool IsTimeToWork(TimeSpan? time = default(TimeSpan? )) parameters: - id: time type: System.Nullable{System.TimeSpan} @@ -747,7 +747,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToScheduleString path: ../TinyLife/Goals/JobType.cs @@ -784,7 +784,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Goals/JobType.cs @@ -795,7 +795,7 @@ items: summary: "\nReturns the display name of this , based on the given level.\nIf no level is given, the job's regular name, without the level-based suffix, is returned.\n" example: [] syntax: - content: public virtual string GetDisplayName(int? level = null) + content: public virtual string GetDisplayName(int? level = default(int? )) parameters: - id: level type: System.Nullable{System.Int32} @@ -828,7 +828,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRequiredPromotionSkills path: ../TinyLife/Goals/JobType.cs @@ -869,7 +869,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnWorkStartsInAnHour path: ../TinyLife/Goals/JobType.cs @@ -907,7 +907,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnWorkHoursOver path: ../TinyLife/Goals/JobType.cs @@ -945,7 +945,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnWorkFinished path: ../TinyLife/Goals/JobType.cs @@ -986,7 +986,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnWorkStarted path: ../TinyLife/Goals/JobType.cs @@ -1027,7 +1027,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnLevelChanged path: ../TinyLife/Goals/JobType.cs @@ -1068,7 +1068,7 @@ items: source: remote: path: TinyLife/Goals/JobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Goals/JobType.cs diff --git a/docs/api/TinyLife.Goals.LifeGoal.Instance.yml b/docs/api/TinyLife.Goals.LifeGoal.Instance.yml index 1b0c1c5..6ca1a07 100644 --- a/docs/api/TinyLife.Goals.LifeGoal.Instance.yml +++ b/docs/api/TinyLife.Goals.LifeGoal.Instance.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Instance path: ../TinyLife/Goals/LifeGoal.cs @@ -80,7 +80,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goal path: ../TinyLife/Goals/LifeGoal.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentGoals path: ../TinyLife/Goals/LifeGoal.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StageIndex path: ../TinyLife/Goals/LifeGoal.cs @@ -219,7 +219,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Goals/LifeGoal.cs @@ -256,7 +256,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Stage path: ../TinyLife/Goals/LifeGoal.cs @@ -293,7 +293,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Completed path: ../TinyLife/Goals/LifeGoal.cs @@ -330,7 +330,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/LifeGoal.cs @@ -372,7 +372,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Goals/LifeGoal.cs @@ -404,7 +404,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Advance path: ../TinyLife/Goals/LifeGoal.cs @@ -436,7 +436,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/LifeGoal.cs diff --git a/docs/api/TinyLife.Goals.LifeGoal.yml b/docs/api/TinyLife.Goals.LifeGoal.yml index f32ed41..9935690 100644 --- a/docs/api/TinyLife.Goals.LifeGoal.yml +++ b/docs/api/TinyLife.Goals.LifeGoal.yml @@ -32,7 +32,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LifeGoal path: ../TinyLife/Goals/LifeGoal.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goals path: ../TinyLife/Goals/LifeGoal.cs @@ -120,7 +120,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Chef path: ../TinyLife/Goals/LifeGoal.cs @@ -155,7 +155,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmartKid path: ../TinyLife/Goals/LifeGoal.cs @@ -190,7 +190,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GymRat path: ../TinyLife/Goals/LifeGoal.cs @@ -225,7 +225,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HouseholdHero path: ../TinyLife/Goals/LifeGoal.cs @@ -260,7 +260,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComputerAddict path: ../TinyLife/Goals/LifeGoal.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FriendOfEveryone path: ../TinyLife/Goals/LifeGoal.cs @@ -330,7 +330,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Millionaire path: ../TinyLife/Goals/LifeGoal.cs @@ -365,7 +365,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnAdvanced path: ../TinyLife/Goals/LifeGoal.cs @@ -400,7 +400,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCompleted path: ../TinyLife/Goals/LifeGoal.cs @@ -435,7 +435,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/LifeGoal.cs @@ -470,7 +470,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Stages path: ../TinyLife/Goals/LifeGoal.cs @@ -505,7 +505,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RewardPersonality path: ../TinyLife/Goals/LifeGoal.cs @@ -540,7 +540,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AllowedAges path: ../TinyLife/Goals/LifeGoal.cs @@ -577,7 +577,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/LifeGoal.cs @@ -622,7 +622,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompleted path: ../TinyLife/Goals/LifeGoal.cs @@ -661,7 +661,7 @@ items: source: remote: path: TinyLife/Goals/LifeGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Goals/LifeGoal.cs diff --git a/docs/api/TinyLife.Goals.ManualProgressGoal.yml b/docs/api/TinyLife.Goals.ManualProgressGoal.yml index 4ad09bb..5ab07e8 100644 --- a/docs/api/TinyLife.Goals.ManualProgressGoal.yml +++ b/docs/api/TinyLife.Goals.ManualProgressGoal.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Goals/ManualProgressGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ManualProgressGoal path: ../TinyLife/Goals/ManualProgressGoal.cs @@ -79,7 +79,7 @@ items: source: remote: path: TinyLife/Goals/ManualProgressGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/ManualProgressGoal.cs @@ -118,7 +118,7 @@ items: source: remote: path: TinyLife/Goals/ManualProgressGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/ManualProgressGoal.cs @@ -156,7 +156,7 @@ items: source: remote: path: TinyLife/Goals/ManualProgressGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/ManualProgressGoal.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Goals/ManualProgressGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeProgress path: ../TinyLife/Goals/ManualProgressGoal.cs diff --git a/docs/api/TinyLife.Goals.Project.ActionSettings.yml b/docs/api/TinyLife.Goals.Project.ActionSettings.yml index d786276..2c1df55 100644 --- a/docs/api/TinyLife.Goals.Project.ActionSettings.yml +++ b/docs/api/TinyLife.Goals.Project.ActionSettings.yml @@ -27,7 +27,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionSettings path: ../TinyLife/Goals/Project.cs @@ -69,7 +69,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/Project.cs @@ -102,7 +102,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Context path: ../TinyLife/Goals/Project.cs @@ -135,7 +135,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Goals/Project.cs @@ -168,7 +168,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConstructedType path: ../TinyLife/Goals/Project.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConstructedTypeScrap path: ../TinyLife/Goals/Project.cs @@ -234,7 +234,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecute path: ../TinyLife/Goals/Project.cs @@ -267,7 +267,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredSkill path: ../TinyLife/Goals/Project.cs @@ -300,7 +300,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredAges path: ../TinyLife/Goals/Project.cs @@ -333,7 +333,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProjectDisplayName path: ../TinyLife/Goals/Project.cs @@ -366,7 +366,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanContinue path: ../TinyLife/Goals/Project.cs @@ -399,7 +399,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IncludeProject path: ../TinyLife/Goals/Project.cs @@ -432,7 +432,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Project.cs diff --git a/docs/api/TinyLife.Goals.Project.yml b/docs/api/TinyLife.Goals.Project.yml index 701bc3e..08cd038 100644 --- a/docs/api/TinyLife.Goals.Project.yml +++ b/docs/api/TinyLife.Goals.Project.yml @@ -32,7 +32,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Project path: ../TinyLife/Goals/Project.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Goals/Project.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/Project.cs @@ -185,7 +185,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Quality path: ../TinyLife/Goals/Project.cs @@ -232,7 +232,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Progress path: ../TinyLife/Goals/Project.cs @@ -281,7 +281,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DailyPay path: ../TinyLife/Goals/Project.cs @@ -334,7 +334,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DailyPayReductionFactor path: ../TinyLife/Goals/Project.cs @@ -387,7 +387,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Goals/Project.cs @@ -426,7 +426,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Project.cs @@ -468,7 +468,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/Project.cs @@ -509,7 +509,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MakeProgress path: ../TinyLife/Goals/Project.cs @@ -559,7 +559,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Remove path: ../TinyLife/Goals/Project.cs @@ -593,7 +593,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNewDay path: ../TinyLife/Goals/Project.cs @@ -627,7 +627,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetDailyPay path: ../TinyLife/Goals/Project.cs @@ -669,7 +669,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateActions path: ../TinyLife/Goals/Project.cs @@ -710,7 +710,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetVarieties path: ../TinyLife/Goals/Project.cs @@ -763,7 +763,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpenNamePrompt path: ../TinyLife/Goals/Project.cs @@ -813,7 +813,7 @@ items: source: remote: path: TinyLife/Goals/Project.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpenScrapPrompt path: ../TinyLife/Goals/Project.cs diff --git a/docs/api/TinyLife.Goals.StudentJobType.yml b/docs/api/TinyLife.Goals.StudentJobType.yml index 8b34fc6..dbd39a5 100644 --- a/docs/api/TinyLife.Goals.StudentJobType.yml +++ b/docs/api/TinyLife.Goals.StudentJobType.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Goals/StudentJobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StudentJobType path: ../TinyLife/Goals/StudentJobType.cs @@ -97,7 +97,7 @@ items: source: remote: path: TinyLife/Goals/StudentJobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/StudentJobType.cs @@ -145,7 +145,7 @@ items: source: remote: path: TinyLife/Goals/StudentJobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnWorkFinished path: ../TinyLife/Goals/StudentJobType.cs @@ -187,7 +187,7 @@ items: source: remote: path: TinyLife/Goals/StudentJobType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnLevelChanged path: ../TinyLife/Goals/StudentJobType.cs diff --git a/docs/api/TinyLife.Goals.TimedGoal.yml b/docs/api/TinyLife.Goals.TimedGoal.yml index f980083..36b9140 100644 --- a/docs/api/TinyLife.Goals.TimedGoal.yml +++ b/docs/api/TinyLife.Goals.TimedGoal.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Goals/TimedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TimedGoal path: ../TinyLife/Goals/TimedGoal.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Goals/TimedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/TimedGoal.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/Goals/TimedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/TimedGoal.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Goals/TimedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/TimedGoal.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Goals/TimedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/TimedGoal.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Goals/TimedGoal.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Trigger path: ../TinyLife/Goals/TimedGoal.cs diff --git a/docs/api/TinyLife.LnCategory.yml b/docs/api/TinyLife.LnCategory.yml index 29528be..1267585 100644 --- a/docs/api/TinyLife.LnCategory.yml +++ b/docs/api/TinyLife.LnCategory.yml @@ -28,11 +28,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LnCategory path: ../TinyLife/Localization.cs - startLine: 135 + startLine: 141 assemblies: - Tiny Life namespace: TinyLife @@ -63,11 +63,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Ui path: ../TinyLife/Localization.cs - startLine: 138 + startLine: 144 assemblies: - Tiny Life namespace: TinyLife @@ -97,11 +97,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Actions path: ../TinyLife/Localization.cs - startLine: 140 + startLine: 146 assemblies: - Tiny Life namespace: TinyLife @@ -131,11 +131,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuildMode path: ../TinyLife/Localization.cs - startLine: 142 + startLine: 148 assemblies: - Tiny Life namespace: TinyLife @@ -165,11 +165,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Clothes path: ../TinyLife/Localization.cs - startLine: 144 + startLine: 150 assemblies: - Tiny Life namespace: TinyLife @@ -199,11 +199,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Food path: ../TinyLife/Localization.cs - startLine: 146 + startLine: 152 assemblies: - Tiny Life namespace: TinyLife @@ -233,11 +233,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Personalities path: ../TinyLife/Localization.cs - startLine: 148 + startLine: 154 assemblies: - Tiny Life namespace: TinyLife @@ -267,11 +267,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Skills path: ../TinyLife/Localization.cs - startLine: 150 + startLine: 156 assemblies: - Tiny Life namespace: TinyLife @@ -301,11 +301,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Jobs path: ../TinyLife/Localization.cs - startLine: 152 + startLine: 158 assemblies: - Tiny Life namespace: TinyLife @@ -335,11 +335,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Emotions path: ../TinyLife/Localization.cs - startLine: 154 + startLine: 160 assemblies: - Tiny Life namespace: TinyLife @@ -369,11 +369,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hints path: ../TinyLife/Localization.cs - startLine: 156 + startLine: 162 assemblies: - Tiny Life namespace: TinyLife @@ -403,11 +403,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InGameHints path: ../TinyLife/Localization.cs - startLine: 158 + startLine: 164 assemblies: - Tiny Life namespace: TinyLife @@ -437,11 +437,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goals path: ../TinyLife/Localization.cs - startLine: 160 + startLine: 166 assemblies: - Tiny Life namespace: TinyLife @@ -471,11 +471,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Names path: ../TinyLife/Localization.cs - startLine: 162 + startLine: 168 assemblies: - Tiny Life namespace: TinyLife diff --git a/docs/api/TinyLife.Localization.yml b/docs/api/TinyLife.Localization.yml index 4a06b64..d55847e 100644 --- a/docs/api/TinyLife.Localization.yml +++ b/docs/api/TinyLife.Localization.yml @@ -21,11 +21,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Localization path: ../TinyLife/Localization.cs - startLine: 21 + startLine: 22 assemblies: - Tiny Life namespace: TinyLife @@ -65,11 +65,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LanguageNames path: ../TinyLife/Localization.cs - startLine: 26 + startLine: 27 assemblies: - Tiny Life namespace: TinyLife @@ -102,11 +102,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Names path: ../TinyLife/Localization.cs - startLine: 31 + startLine: 32 assemblies: - Tiny Life namespace: TinyLife @@ -139,11 +139,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetLanguage path: ../TinyLife/Localization.cs - startLine: 43 + startLine: 44 assemblies: - Tiny Life namespace: TinyLife @@ -177,11 +177,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Get path: ../TinyLife/Localization.cs - startLine: 63 + startLine: 69 assemblies: - Tiny Life namespace: TinyLife @@ -221,11 +221,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Get path: ../TinyLife/Localization.cs - startLine: 82 + startLine: 88 assemblies: - Tiny Life namespace: TinyLife @@ -271,11 +271,11 @@ items: source: remote: path: TinyLife/Localization.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetKeys path: ../TinyLife/Localization.cs - startLine: 91 + startLine: 97 assemblies: - Tiny Life namespace: TinyLife diff --git a/docs/api/TinyLife.Mods.EventPhase.yml b/docs/api/TinyLife.Mods.EventPhase.yml index cb80309..d1243c7 100644 --- a/docs/api/TinyLife.Mods.EventPhase.yml +++ b/docs/api/TinyLife.Mods.EventPhase.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Mods/EventPhase.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EventPhase path: ../TinyLife/Mods/EventPhase.cs @@ -52,7 +52,7 @@ items: source: remote: path: TinyLife/Mods/EventPhase.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pre path: ../TinyLife/Mods/EventPhase.cs @@ -86,7 +86,7 @@ items: source: remote: path: TinyLife/Mods/EventPhase.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Post path: ../TinyLife/Mods/EventPhase.cs diff --git a/docs/api/TinyLife.Mods.Mod.yml b/docs/api/TinyLife.Mods.Mod.yml index f71107b..82c949e 100644 --- a/docs/api/TinyLife.Mods.Mod.yml +++ b/docs/api/TinyLife.Mods.Mod.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mod path: ../TinyLife/Mods/Mod.cs @@ -68,7 +68,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Mods/Mod.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Description path: ../TinyLife/Mods/Mod.cs @@ -146,7 +146,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/Mods/Mod.cs @@ -185,7 +185,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Mods/Mod.cs @@ -232,7 +232,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddGameContent path: ../TinyLife/Mods/Mod.cs @@ -273,7 +273,7 @@ items: source: remote: path: TinyLife/Mods/Mod.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCustomFurnitureTextures path: ../TinyLife/Mods/Mod.cs diff --git a/docs/api/TinyLife.Mods.ModInfo.yml b/docs/api/TinyLife.Mods.ModInfo.yml index b520571..20a931a 100644 --- a/docs/api/TinyLife.Mods.ModInfo.yml +++ b/docs/api/TinyLife.Mods.ModInfo.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModInfo path: ../TinyLife/Mods/ModLoader.cs @@ -71,7 +71,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Id path: ../TinyLife/Mods/ModLoader.cs @@ -106,7 +106,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mod path: ../TinyLife/Mods/ModLoader.cs @@ -141,7 +141,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Logger path: ../TinyLife/Mods/ModLoader.cs @@ -176,7 +176,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Content path: ../TinyLife/Mods/ModLoader.cs @@ -211,7 +211,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Harmony path: ../TinyLife/Mods/ModLoader.cs @@ -246,7 +246,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Finalize path: ../TinyLife/Mods/ModLoader.cs @@ -277,7 +277,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dispose path: ../TinyLife/Mods/ModLoader.cs @@ -310,7 +310,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToString path: ../TinyLife/Mods/ModLoader.cs diff --git a/docs/api/TinyLife.Mods.ModLoader.yml b/docs/api/TinyLife.Mods.ModLoader.yml index a15d215..4fa0936 100644 --- a/docs/api/TinyLife.Mods.ModLoader.yml +++ b/docs/api/TinyLife.Mods.ModLoader.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModLoader path: ../TinyLife/Mods/ModLoader.cs @@ -61,7 +61,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TryGetModInfo path: ../TinyLife/Mods/ModLoader.cs @@ -108,7 +108,7 @@ items: source: remote: path: TinyLife/Mods/ModLoader.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetModsFolder path: ../TinyLife/Mods/ModLoader.cs diff --git a/docs/api/TinyLife.Need.yml b/docs/api/TinyLife.Need.yml index b8d7b56..3ca1b19 100644 --- a/docs/api/TinyLife.Need.yml +++ b/docs/api/TinyLife.Need.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Need path: ../TinyLife/Need.cs @@ -75,7 +75,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Max path: ../TinyLife/Need.cs @@ -110,7 +110,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Need.cs @@ -155,7 +155,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Value path: ../TinyLife/Need.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Percentage path: ../TinyLife/Need.cs @@ -239,7 +239,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Need.cs diff --git a/docs/api/TinyLife.NeedType.yml b/docs/api/TinyLife.NeedType.yml index 792f729..c240ef6 100644 --- a/docs/api/TinyLife.NeedType.yml +++ b/docs/api/TinyLife.NeedType.yml @@ -30,7 +30,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NeedType path: ../TinyLife/Need.cs @@ -84,7 +84,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Need.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Energy path: ../TinyLife/Need.cs @@ -156,7 +156,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hunger path: ../TinyLife/Need.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Social path: ../TinyLife/Need.cs @@ -226,7 +226,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Toilet path: ../TinyLife/Need.cs @@ -261,7 +261,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hygiene path: ../TinyLife/Need.cs @@ -296,7 +296,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Entertainment path: ../TinyLife/Need.cs @@ -331,7 +331,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Need.cs @@ -366,7 +366,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassiveReduction path: ../TinyLife/Need.cs @@ -401,7 +401,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NeedLowAction path: ../TinyLife/Need.cs @@ -436,7 +436,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NeedLowTime path: ../TinyLife/Need.cs @@ -471,7 +471,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SolveImportance path: ../TinyLife/Need.cs @@ -506,7 +506,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SourceString path: ../TinyLife/Need.cs @@ -545,7 +545,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Need.cs @@ -596,7 +596,7 @@ items: source: remote: path: TinyLife/Need.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Need.cs diff --git a/docs/api/TinyLife.Objects.AbstractSpot.yml b/docs/api/TinyLife.Objects.AbstractSpot.yml index e9ee3fe..9b4e9d9 100644 --- a/docs/api/TinyLife.Objects.AbstractSpot.yml +++ b/docs/api/TinyLife.Objects.AbstractSpot.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AbstractSpot path: ../TinyLife/Objects/ActionSpot.cs @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: YOffset path: ../TinyLife/Objects/ActionSpot.cs @@ -113,7 +113,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Offset path: ../TinyLife/Objects/ActionSpot.cs @@ -146,7 +146,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisualOffset path: ../TinyLife/Objects/ActionSpot.cs @@ -179,7 +179,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ValidDirections path: ../TinyLife/Objects/ActionSpot.cs @@ -214,7 +214,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Group path: ../TinyLife/Objects/ActionSpot.cs @@ -247,7 +247,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawLayer path: ../TinyLife/Objects/ActionSpot.cs @@ -280,7 +280,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasVisualOffset path: ../TinyLife/Objects/ActionSpot.cs @@ -317,7 +317,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ActionSpot.cs @@ -365,7 +365,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetValidDirections path: ../TinyLife/Objects/ActionSpot.cs @@ -404,7 +404,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetLocation path: ../TinyLife/Objects/ActionSpot.cs @@ -446,7 +446,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DoGroupsOverlap path: ../TinyLife/Objects/ActionSpot.cs diff --git a/docs/api/TinyLife.Objects.ActionSpot.yml b/docs/api/TinyLife.Objects.ActionSpot.yml index 6c43218..fe666de 100644 --- a/docs/api/TinyLife.Objects.ActionSpot.yml +++ b/docs/api/TinyLife.Objects.ActionSpot.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionSpot path: ../TinyLife/Objects/ActionSpot.cs @@ -84,7 +84,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CategoryRestriction path: ../TinyLife/Objects/ActionSpot.cs @@ -117,7 +117,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ActionSpot.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ActionSpot.cs @@ -204,7 +204,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ActionSpot.cs @@ -252,7 +252,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeDirections path: ../TinyLife/Objects/ActionSpot.cs @@ -294,7 +294,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetOccupants path: ../TinyLife/Objects/ActionSpot.cs @@ -339,7 +339,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BedSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -380,7 +380,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BenchSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -421,7 +421,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PicnicTableSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -462,7 +462,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AllSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -506,7 +506,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPicnicBenchDrawLayer path: ../TinyLife/Objects/ActionSpot.cs diff --git a/docs/api/TinyLife.Objects.AgeGroup.yml b/docs/api/TinyLife.Objects.AgeGroup.yml index 0727376..b60460d 100644 --- a/docs/api/TinyLife.Objects.AgeGroup.yml +++ b/docs/api/TinyLife.Objects.AgeGroup.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AgeGroup path: ../TinyLife/Objects/Person.cs @@ -62,7 +62,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Child path: ../TinyLife/Objects/Person.cs @@ -96,7 +96,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Adult path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.BreakableFurniture.BrokenBehavior.yml b/docs/api/TinyLife.Objects.BreakableFurniture.BrokenBehavior.yml index 0c496ce..2f6e740 100644 --- a/docs/api/TinyLife.Objects.BreakableFurniture.BrokenBehavior.yml +++ b/docs/api/TinyLife.Objects.BreakableFurniture.BrokenBehavior.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BrokenBehavior path: ../TinyLife/Objects/BreakableFurniture.cs @@ -65,7 +65,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Puddles path: ../TinyLife/Objects/BreakableFurniture.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dripping path: ../TinyLife/Objects/BreakableFurniture.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ElectricityCrackle path: ../TinyLife/Objects/BreakableFurniture.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Smoke path: ../TinyLife/Objects/BreakableFurniture.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Electrocution path: ../TinyLife/Objects/BreakableFurniture.cs diff --git a/docs/api/TinyLife.Objects.BreakableFurniture.yml b/docs/api/TinyLife.Objects.BreakableFurniture.yml index 17a8583..1a6d1a5 100644 --- a/docs/api/TinyLife.Objects.BreakableFurniture.yml +++ b/docs/api/TinyLife.Objects.BreakableFurniture.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BreakableFurniture path: ../TinyLife/Objects/BreakableFurniture.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnWearDown path: ../TinyLife/Objects/BreakableFurniture.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnBreak path: ../TinyLife/Objects/BreakableFurniture.cs @@ -225,7 +225,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Broken path: ../TinyLife/Objects/BreakableFurniture.cs @@ -268,7 +268,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/BreakableFurniture.cs @@ -319,7 +319,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/BreakableFurniture.cs @@ -365,7 +365,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WearDown path: ../TinyLife/Objects/BreakableFurniture.cs @@ -403,7 +403,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteAction path: ../TinyLife/Objects/BreakableFurniture.cs @@ -454,7 +454,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionUpdate path: ../TinyLife/Objects/BreakableFurniture.cs @@ -505,7 +505,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/Objects/BreakableFurniture.cs @@ -543,7 +543,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDescription path: ../TinyLife/Objects/BreakableFurniture.cs @@ -581,7 +581,7 @@ items: source: remote: path: TinyLife/Objects/BreakableFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDecorativeRating path: ../TinyLife/Objects/BreakableFurniture.cs diff --git a/docs/api/TinyLife.Objects.Clothes.yml b/docs/api/TinyLife.Objects.Clothes.yml index 548ff4d..4edeb39 100644 --- a/docs/api/TinyLife.Objects.Clothes.yml +++ b/docs/api/TinyLife.Objects.Clothes.yml @@ -35,7 +35,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Clothes path: ../TinyLife/Objects/Clothes.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Objects/Clothes.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Layers path: ../TinyLife/Objects/Clothes.cs @@ -163,7 +163,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AllIntentions path: ../TinyLife/Objects/Clothes.cs @@ -200,7 +200,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ReferencePrice path: ../TinyLife/Objects/Clothes.cs @@ -235,7 +235,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Objects/Clothes.cs @@ -270,7 +270,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Layer path: ../TinyLife/Objects/Clothes.cs @@ -305,7 +305,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TextureRegions path: ../TinyLife/Objects/Clothes.cs @@ -340,7 +340,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Colors path: ../TinyLife/Objects/Clothes.cs @@ -375,7 +375,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/Objects/Clothes.cs @@ -410,7 +410,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Intentions path: ../TinyLife/Objects/Clothes.cs @@ -445,7 +445,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/Objects/Clothes.cs @@ -482,7 +482,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NonBuyable path: ../TinyLife/Objects/Clothes.cs @@ -519,7 +519,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Ages path: ../TinyLife/Objects/Clothes.cs @@ -556,7 +556,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DepthFunction path: ../TinyLife/Objects/Clothes.cs @@ -593,7 +593,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TextureBehaviorLayer path: ../TinyLife/Objects/Clothes.cs @@ -630,7 +630,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Clothes.cs @@ -684,7 +684,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/Objects/Clothes.cs @@ -721,7 +721,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIntentionDescription path: ../TinyLife/Objects/Clothes.cs @@ -756,7 +756,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Objects/Clothes.cs @@ -794,7 +794,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetClothes path: ../TinyLife/Objects/Clothes.cs diff --git a/docs/api/TinyLife.Objects.ClothesIntention.yml b/docs/api/TinyLife.Objects.ClothesIntention.yml index 21eddfa..8cbf59e 100644 --- a/docs/api/TinyLife.Objects.ClothesIntention.yml +++ b/docs/api/TinyLife.Objects.ClothesIntention.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ClothesIntention path: ../TinyLife/Objects/Clothes.cs @@ -71,7 +71,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: None path: ../TinyLife/Objects/Clothes.cs @@ -103,7 +103,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Everyday path: ../TinyLife/Objects/Clothes.cs @@ -135,7 +135,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Party path: ../TinyLife/Objects/Clothes.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Formal path: ../TinyLife/Objects/Clothes.cs @@ -199,7 +199,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Workout path: ../TinyLife/Objects/Clothes.cs @@ -231,7 +231,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Swimwear path: ../TinyLife/Objects/Clothes.cs @@ -263,7 +263,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sleep path: ../TinyLife/Objects/Clothes.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Summer path: ../TinyLife/Objects/Clothes.cs @@ -327,7 +327,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Winter path: ../TinyLife/Objects/Clothes.cs @@ -359,7 +359,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Work path: ../TinyLife/Objects/Clothes.cs diff --git a/docs/api/TinyLife.Objects.ClothesLayer.yml b/docs/api/TinyLife.Objects.ClothesLayer.yml index 210b5cf..d22ff5e 100644 --- a/docs/api/TinyLife.Objects.ClothesLayer.yml +++ b/docs/api/TinyLife.Objects.ClothesLayer.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ClothesLayer path: ../TinyLife/Objects/Clothes.cs @@ -74,7 +74,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Body path: ../TinyLife/Objects/Clothes.cs @@ -108,7 +108,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Eyes path: ../TinyLife/Objects/Clothes.cs @@ -142,7 +142,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pants path: ../TinyLife/Objects/Clothes.cs @@ -176,7 +176,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Arms path: ../TinyLife/Objects/Clothes.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Shirt path: ../TinyLife/Objects/Clothes.cs @@ -244,7 +244,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Accessories path: ../TinyLife/Objects/Clothes.cs @@ -278,7 +278,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hair path: ../TinyLife/Objects/Clothes.cs @@ -312,7 +312,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HeadAccessories path: ../TinyLife/Objects/Clothes.cs @@ -346,7 +346,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FaceAccessories path: ../TinyLife/Objects/Clothes.cs @@ -380,7 +380,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ArmAccessories path: ../TinyLife/Objects/Clothes.cs @@ -414,7 +414,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Shoes path: ../TinyLife/Objects/Clothes.cs diff --git a/docs/api/TinyLife.Objects.CornerFurniture.Counter.yml b/docs/api/TinyLife.Objects.CornerFurniture.Counter.yml index aad9ce3..7f5dcc1 100644 --- a/docs/api/TinyLife.Objects.CornerFurniture.Counter.yml +++ b/docs/api/TinyLife.Objects.CornerFurniture.Counter.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Counter path: ../TinyLife/Objects/CornerFurniture.cs @@ -154,7 +154,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/CornerFurniture.cs @@ -205,7 +205,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldConnectTo path: ../TinyLife/Objects/CornerFurniture.cs @@ -247,7 +247,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCornerStatus path: ../TinyLife/Objects/CornerFurniture.cs diff --git a/docs/api/TinyLife.Objects.CornerFurniture.yml b/docs/api/TinyLife.Objects.CornerFurniture.yml index 5c30f1a..3868cf3 100644 --- a/docs/api/TinyLife.Objects.CornerFurniture.yml +++ b/docs/api/TinyLife.Objects.CornerFurniture.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CornerFurniture path: ../TinyLife/Objects/CornerFurniture.cs @@ -155,7 +155,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/CornerFurniture.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldConnectTo path: ../TinyLife/Objects/CornerFurniture.cs @@ -247,7 +247,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCornerStatus path: ../TinyLife/Objects/CornerFurniture.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/CornerFurniture.cs @@ -369,7 +369,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNeighborChanged path: ../TinyLife/Objects/CornerFurniture.cs @@ -408,7 +408,7 @@ items: source: remote: path: TinyLife/Objects/CornerFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/CornerFurniture.cs diff --git a/docs/api/TinyLife.Objects.Fence.yml b/docs/api/TinyLife.Objects.Fence.yml index 962f522..787f25c 100644 --- a/docs/api/TinyLife.Objects.Fence.yml +++ b/docs/api/TinyLife.Objects.Fence.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Objects/Fence.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fence path: ../TinyLife/Objects/Fence.cs @@ -152,7 +152,7 @@ items: source: remote: path: TinyLife/Objects/Fence.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Fence.cs @@ -203,7 +203,7 @@ items: source: remote: path: TinyLife/Objects/Fence.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Fence.cs @@ -281,7 +281,7 @@ items: source: remote: path: TinyLife/Objects/Fence.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/Fence.cs @@ -319,7 +319,7 @@ items: source: remote: path: TinyLife/Objects/Fence.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNeighborChanged path: ../TinyLife/Objects/Fence.cs @@ -358,7 +358,7 @@ items: source: remote: path: TinyLife/Objects/Fence.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldConnectTo path: ../TinyLife/Objects/Fence.cs diff --git a/docs/api/TinyLife.Objects.Fireplace.yml b/docs/api/TinyLife.Objects.Fireplace.yml index 82359a0..d7802eb 100644 --- a/docs/api/TinyLife.Objects.Fireplace.yml +++ b/docs/api/TinyLife.Objects.Fireplace.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fireplace path: ../TinyLife/Objects/Fireplace.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsElectrical path: ../TinyLife/Objects/Fireplace.cs @@ -199,7 +199,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LightSize path: ../TinyLife/Objects/Fireplace.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Fireplace.cs @@ -289,7 +289,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Fireplace.cs @@ -367,7 +367,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/Fireplace.cs @@ -412,7 +412,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateLights path: ../TinyLife/Objects/Fireplace.cs @@ -450,7 +450,7 @@ items: source: remote: path: TinyLife/Objects/Fireplace.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnRemoved path: ../TinyLife/Objects/Fireplace.cs diff --git a/docs/api/TinyLife.Objects.Food.yml b/docs/api/TinyLife.Objects.Food.yml index 5a11e67..b4d2dbf 100644 --- a/docs/api/TinyLife.Objects.Food.yml +++ b/docs/api/TinyLife.Objects.Food.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Objects/Food.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Food path: ../TinyLife/Objects/Food.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/Food.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodLeft path: ../TinyLife/Objects/Food.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Objects/Food.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Food.cs @@ -253,7 +253,7 @@ items: source: remote: path: TinyLife/Objects/Food.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Food.cs @@ -331,7 +331,7 @@ items: source: remote: path: TinyLife/Objects/Food.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHoverInfo path: ../TinyLife/Objects/Food.cs diff --git a/docs/api/TinyLife.Objects.FoodTypedItem.yml b/docs/api/TinyLife.Objects.FoodTypedItem.yml index 8a8bf62..f59fff6 100644 --- a/docs/api/TinyLife.Objects.FoodTypedItem.yml +++ b/docs/api/TinyLife.Objects.FoodTypedItem.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodTypedItem path: ../TinyLife/Objects/FoodTypedItem.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodType path: ../TinyLife/Objects/FoodTypedItem.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExpirationTime path: ../TinyLife/Objects/FoodTypedItem.cs @@ -245,7 +245,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ServingSize path: ../TinyLife/Objects/FoodTypedItem.cs @@ -288,7 +288,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Expired path: ../TinyLife/Objects/FoodTypedItem.cs @@ -325,7 +325,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/FoodTypedItem.cs @@ -376,7 +376,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/FoodTypedItem.cs @@ -414,7 +414,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHoverInfo path: ../TinyLife/Objects/FoodTypedItem.cs @@ -452,7 +452,7 @@ items: source: remote: path: TinyLife/Objects/FoodTypedItem.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/FoodTypedItem.cs diff --git a/docs/api/TinyLife.Objects.Furniture.yml b/docs/api/TinyLife.Objects.Furniture.yml index 99b249d..d4f401d 100644 --- a/docs/api/TinyLife.Objects.Furniture.yml +++ b/docs/api/TinyLife.Objects.Furniture.yml @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Furniture path: ../TinyLife/Objects/Furniture.cs @@ -160,7 +160,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Random path: ../TinyLife/Objects/Furniture.cs @@ -197,7 +197,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetDescription path: ../TinyLife/Objects/Furniture.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnSetCreator path: ../TinyLife/Objects/Furniture.cs @@ -263,7 +263,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetDirty path: ../TinyLife/Objects/Furniture.cs @@ -296,7 +296,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnDirty path: ../TinyLife/Objects/Furniture.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Objects/Furniture.cs @@ -374,7 +374,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rotation path: ../TinyLife/Objects/Furniture.cs @@ -417,7 +417,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ParentFurniture path: ../TinyLife/Objects/Furniture.cs @@ -454,7 +454,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ParentObjectSpot path: ../TinyLife/Objects/Furniture.cs @@ -491,7 +491,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasParent path: ../TinyLife/Objects/Furniture.cs @@ -528,7 +528,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Colors path: ../TinyLife/Objects/Furniture.cs @@ -571,7 +571,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Area path: ../TinyLife/Objects/Furniture.cs @@ -608,7 +608,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisualPosition path: ../TinyLife/Objects/Furniture.cs @@ -645,7 +645,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DevaluedThroughUse path: ../TinyLife/Objects/Furniture.cs @@ -692,7 +692,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AreUtilitiesDisabled path: ../TinyLife/Objects/Furniture.cs @@ -729,7 +729,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsStatic path: ../TinyLife/Objects/Furniture.cs @@ -776,7 +776,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreatorId path: ../TinyLife/Objects/Furniture.cs @@ -827,7 +827,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Quality path: ../TinyLife/Objects/Furniture.cs @@ -874,7 +874,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBeDirty path: ../TinyLife/Objects/Furniture.cs @@ -911,7 +911,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dirty path: ../TinyLife/Objects/Furniture.cs @@ -958,7 +958,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CustomPrice path: ../TinyLife/Objects/Furniture.cs @@ -1005,7 +1005,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Creator path: ../TinyLife/Objects/Furniture.cs @@ -1042,7 +1042,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Furniture.cs @@ -1093,7 +1093,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Furniture.cs @@ -1146,7 +1146,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/Furniture.cs @@ -1184,7 +1184,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Intersects path: ../TinyLife/Objects/Furniture.cs @@ -1226,7 +1226,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCategories path: ../TinyLife/Objects/Furniture.cs @@ -1270,7 +1270,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnAdded path: ../TinyLife/Objects/Furniture.cs @@ -1305,7 +1305,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnRemoved path: ../TinyLife/Objects/Furniture.cs @@ -1340,7 +1340,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAiPriority path: ../TinyLife/Objects/Furniture.cs @@ -1385,7 +1385,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetVisibility path: ../TinyLife/Objects/Furniture.cs @@ -1423,7 +1423,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteAction path: ../TinyLife/Objects/Furniture.cs @@ -1474,7 +1474,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnActionCompleted path: ../TinyLife/Objects/Furniture.cs @@ -1519,7 +1519,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionUpdate path: ../TinyLife/Objects/Furniture.cs @@ -1570,7 +1570,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Furniture.cs @@ -1647,7 +1647,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/Objects/Furniture.cs @@ -1686,7 +1686,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDescription path: ../TinyLife/Objects/Furniture.cs @@ -1723,7 +1723,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDecorativeRating path: ../TinyLife/Objects/Furniture.cs @@ -1764,7 +1764,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDirty path: ../TinyLife/Objects/Furniture.cs @@ -1805,7 +1805,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetCreator path: ../TinyLife/Objects/Furniture.cs @@ -1846,7 +1846,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Objects/Furniture.cs @@ -1883,7 +1883,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNeighborChanged path: ../TinyLife/Objects/Furniture.cs @@ -1921,7 +1921,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawUi path: ../TinyLife/Objects/Furniture.cs @@ -1972,7 +1972,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetOccupants path: ../TinyLife/Objects/Furniture.cs @@ -2014,7 +2014,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeActionSpots path: ../TinyLife/Objects/Furniture.cs @@ -2056,7 +2056,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeActionSpot path: ../TinyLife/Objects/Furniture.cs @@ -2098,7 +2098,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeActionSpotInfo path: ../TinyLife/Objects/Furniture.cs @@ -2143,7 +2143,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetActionSpotInfo path: ../TinyLife/Objects/Furniture.cs @@ -2188,7 +2188,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeObjectSpot path: ../TinyLife/Objects/Furniture.cs @@ -2199,7 +2199,7 @@ items: summary: "\nReturns the first free on this furniture.\nFree, in this case, is any object spot that isn't already occupied by a different furniture.\n" example: [] syntax: - content: public ObjectSpot GetFreeObjectSpot(FurnitureType type, Vector2? position = null) + content: public ObjectSpot GetFreeObjectSpot(FurnitureType type, Vector2? position = default(Vector2? )) parameters: - id: type type: TinyLife.Objects.FurnitureType @@ -2233,7 +2233,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetParent path: ../TinyLife/Objects/Furniture.cs @@ -2272,7 +2272,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnlinkParentsAndChildren path: ../TinyLife/Objects/Furniture.cs @@ -2304,7 +2304,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveAndUnlink path: ../TinyLife/Objects/Furniture.cs @@ -2336,7 +2336,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetChildren path: ../TinyLife/Objects/Furniture.cs @@ -2378,7 +2378,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveChildren path: ../TinyLife/Objects/Furniture.cs @@ -2425,7 +2425,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveChild path: ../TinyLife/Objects/Furniture.cs @@ -2464,7 +2464,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddChild path: ../TinyLife/Objects/Furniture.cs @@ -2476,7 +2476,7 @@ items: example: [] syntax: content: >- - public T AddChild(FurnitureType type, Direction2 rotation, int[] colors = null, Guid? id = null, Vector2? position = null) + public T AddChild(FurnitureType type, Direction2 rotation, int[] colors = null, Guid? id = default(Guid? ), Vector2? position = default(Vector2? )) where T : Furniture parameters: - id: type @@ -2523,7 +2523,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddChild path: ../TinyLife/Objects/Furniture.cs @@ -2534,7 +2534,7 @@ items: summary: "\nAdds a child to this furniture, setting its parent () to this furniture and adding it to this furniture's .\nThe object spot selected is the first available object spot.\n" example: [] syntax: - content: public bool AddChild(Furniture item, Direction2 rotation, Vector2? position = null) + content: public bool AddChild(Furniture item, Direction2 rotation, Vector2? position = default(Vector2? )) parameters: - id: item type: TinyLife.Objects.Furniture @@ -2571,7 +2571,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetChild path: ../TinyLife/Objects/Furniture.cs @@ -2582,7 +2582,7 @@ items: summary: "\nSets the child element in the given object spot to the given furniture and adds it to this furniture's .\nIf there are already children in the given object spot, those are removed prior to adding the new child.\n" example: [] syntax: - content: public void SetChild(ObjectSpot spot, FurnitureType type, Direction2 rotation, int[] colors = null, Guid? id = null) + content: public void SetChild(ObjectSpot spot, FurnitureType type, Direction2 rotation, int[] colors = null, Guid? id = default(Guid? )) parameters: - id: spot type: TinyLife.Objects.ObjectSpot @@ -2622,7 +2622,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetChild path: ../TinyLife/Objects/Furniture.cs @@ -2664,7 +2664,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NotifyNeighbors path: ../TinyLife/Objects/Furniture.cs @@ -2696,7 +2696,7 @@ items: source: remote: path: TinyLife/Objects/Furniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetNewId path: ../TinyLife/Objects/Furniture.cs diff --git a/docs/api/TinyLife.Objects.FurnitureType.TypeSettings.yml b/docs/api/TinyLife.Objects.FurnitureType.TypeSettings.yml index 81b1ed6..4625f45 100644 --- a/docs/api/TinyLife.Objects.FurnitureType.TypeSettings.yml +++ b/docs/api/TinyLife.Objects.FurnitureType.TypeSettings.yml @@ -47,7 +47,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TypeSettings path: ../TinyLife/Objects/FurnitureType.cs @@ -93,7 +93,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Objects/FurnitureType.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Size path: ../TinyLife/Objects/FurnitureType.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Categories path: ../TinyLife/Objects/FurnitureType.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionSpots path: ../TinyLife/Objects/FurnitureType.cs @@ -225,7 +225,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ObjectSpots path: ../TinyLife/Objects/FurnitureType.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorSchemes path: ../TinyLife/Objects/FurnitureType.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorMap path: ../TinyLife/Objects/FurnitureType.cs @@ -324,7 +324,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DefaultColors path: ../TinyLife/Objects/FurnitureType.cs @@ -357,7 +357,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DefaultRotation path: ../TinyLife/Objects/FurnitureType.cs @@ -390,7 +390,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConstructedType path: ../TinyLife/Objects/FurnitureType.cs @@ -423,7 +423,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/Objects/FurnitureType.cs @@ -456,7 +456,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuyableVariations path: ../TinyLife/Objects/FurnitureType.cs @@ -489,7 +489,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HeldScale path: ../TinyLife/Objects/FurnitureType.cs @@ -522,7 +522,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HeldPivot path: ../TinyLife/Objects/FurnitureType.cs @@ -555,7 +555,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DecorativeRating path: ../TinyLife/Objects/FurnitureType.cs @@ -588,7 +588,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/Objects/FurnitureType.cs @@ -621,7 +621,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reliability path: ../TinyLife/Objects/FurnitureType.cs @@ -654,7 +654,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BrokenBehavior path: ../TinyLife/Objects/FurnitureType.cs @@ -687,7 +687,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ElectricityRating path: ../TinyLife/Objects/FurnitureType.cs @@ -720,7 +720,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WaterRating path: ../TinyLife/Objects/FurnitureType.cs @@ -753,7 +753,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Visibility path: ../TinyLife/Objects/FurnitureType.cs @@ -786,7 +786,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tab path: ../TinyLife/Objects/FurnitureType.cs @@ -819,7 +819,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TextureName path: ../TinyLife/Objects/FurnitureType.cs @@ -852,7 +852,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateLights path: ../TinyLife/Objects/FurnitureType.cs @@ -885,7 +885,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtyOverlayTextureName path: ../TinyLife/Objects/FurnitureType.cs @@ -918,7 +918,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DistanceFromObstructions path: ../TinyLife/Objects/FurnitureType.cs @@ -951,7 +951,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Objects/FurnitureType.cs @@ -984,7 +984,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteAction path: ../TinyLife/Objects/FurnitureType.cs @@ -1017,7 +1017,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/FurnitureType.cs @@ -1068,7 +1068,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetData path: ../TinyLife/Objects/FurnitureType.cs @@ -1106,7 +1106,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetData path: ../TinyLife/Objects/FurnitureType.cs @@ -1149,7 +1149,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDataKeys path: ../TinyLife/Objects/FurnitureType.cs diff --git a/docs/api/TinyLife.Objects.FurnitureType.yml b/docs/api/TinyLife.Objects.FurnitureType.yml index 6a5e993..a77cf1b 100644 --- a/docs/api/TinyLife.Objects.FurnitureType.yml +++ b/docs/api/TinyLife.Objects.FurnitureType.yml @@ -147,7 +147,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureType path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -207,7 +207,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Objects/FurnitureType.cs @@ -244,7 +244,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Textures path: ../TinyLife/Objects/FurnitureType.cs @@ -279,7 +279,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtyTextures path: ../TinyLife/Objects/FurnitureType.cs @@ -314,7 +314,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Settings path: ../TinyLife/Objects/FurnitureType.cs @@ -349,7 +349,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rotations path: ../TinyLife/Objects/FurnitureType.cs @@ -386,7 +386,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SourceString path: ../TinyLife/Objects/FurnitureType.cs @@ -425,7 +425,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToString path: ../TinyLife/Objects/FurnitureType.cs @@ -461,7 +461,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawLayers path: ../TinyLife/Objects/FurnitureType.cs @@ -472,7 +472,7 @@ items: summary: "\nDraws the furniture type with the given data.\nInternally, this uses to draw each layer with a slight depth offset.\n" example: [] syntax: - content: public void DrawLayers(Map map, Vector2 position, SpriteBatch batch, Vector2 drawPos, Direction2 rotation, TextureRegion[] layers, int[] colors, float scale, bool pivot = true, Furniture parent = null, AbstractSpot spot = null, Color? overrideColor = null, float depthOffset = 0F, bool held = false) + content: public void DrawLayers(Map map, Vector2 position, SpriteBatch batch, Vector2 drawPos, Direction2 rotation, TextureRegion[] layers, int[] colors, float scale, bool pivot = true, Furniture parent = null, AbstractSpot spot = null, Color? overrideColor = default(Color? ), float depthOffset = 0F, bool held = false) parameters: - id: map type: TinyLife.World.Map @@ -539,7 +539,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawColumns path: ../TinyLife/Objects/FurnitureType.cs @@ -614,7 +614,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawDirtyOverlay path: ../TinyLife/Objects/FurnitureType.cs @@ -625,7 +625,7 @@ items: summary: "\nDraws the of this object into the world.\nNote that, if this object cannot get dirty, this method will throw a .\nBy default, the dirty overlay is automatically drawn in .\n" example: [] syntax: - content: public void DrawDirtyOverlay(Map map, Vector2 position, SpriteBatch batch, Vector2 drawPos, Direction2 rotation, float scale, Color? overrideColor = null, bool pivot = true, Furniture parent = null, AbstractSpot parentSpot = null, float depthOffset = 0F, bool held = false) + content: public void DrawDirtyOverlay(Map map, Vector2 position, SpriteBatch batch, Vector2 drawPos, Direction2 rotation, float scale, Color? overrideColor = default(Color? ), bool pivot = true, Furniture parent = null, AbstractSpot parentSpot = null, float depthOffset = 0F, bool held = false) parameters: - id: map type: TinyLife.World.Map @@ -686,7 +686,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSize path: ../TinyLife/Objects/FurnitureType.cs @@ -725,7 +725,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/Objects/FurnitureType.cs @@ -736,7 +736,7 @@ items: summary: "\nConstructs a new object from this furniture type\n" example: [] syntax: - content: public Furniture Construct(int[] colors, Map map, Vector2 pos, Guid? id = null) + content: public Furniture Construct(int[] colors, Map map, Vector2 pos, Guid? id = default(Guid? )) parameters: - id: colors type: System.Int32[] @@ -776,7 +776,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetConstructedType path: ../TinyLife/Objects/FurnitureType.cs @@ -811,7 +811,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWallsInTheWay path: ../TinyLife/Objects/FurnitureType.cs @@ -856,7 +856,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRoofingInTheWay path: ../TinyLife/Objects/FurnitureType.cs @@ -901,7 +901,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/Objects/FurnitureType.cs @@ -938,7 +938,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasCategory path: ../TinyLife/Objects/FurnitureType.cs @@ -977,7 +977,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetBestRotation path: ../TinyLife/Objects/FurnitureType.cs @@ -1016,7 +1016,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetReferenceTexture path: ../TinyLife/Objects/FurnitureType.cs @@ -1027,7 +1027,7 @@ items: summary: "\nReturns the reference texture of this furniture type for the given rotation.\nThe reference texture is the first layer of the texture for the given rotation.\n" example: [] syntax: - content: public TextureRegion GetReferenceTexture(Direction2? rotation = null) + content: public TextureRegion GetReferenceTexture(Direction2? rotation = default(Direction2? )) parameters: - id: rotation type: System.Nullable{MLEM.Misc.Direction2} @@ -1058,7 +1058,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRotatedOffset path: ../TinyLife/Objects/FurnitureType.cs @@ -1103,7 +1103,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayName path: ../TinyLife/Objects/FurnitureType.cs @@ -1142,7 +1142,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCoveredTiles path: ../TinyLife/Objects/FurnitureType.cs @@ -1186,7 +1186,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Objects/FurnitureType.cs @@ -1227,7 +1227,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RegisterAll path: ../TinyLife/Objects/FurnitureType.cs @@ -1271,7 +1271,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetTextures path: ../TinyLife/Objects/FurnitureType.cs @@ -1321,7 +1321,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetTexture path: ../TinyLife/Objects/FurnitureType.cs @@ -1365,7 +1365,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PotPlant path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1400,7 +1400,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallPlant path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1435,7 +1435,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LgbtFlags path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1470,7 +1470,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkoutPosters path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1505,7 +1505,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LargeRectangleRug path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1540,7 +1540,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Doormat path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1575,7 +1575,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LargeRoundRug path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1610,7 +1610,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CountryFence path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1645,7 +1645,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hedge path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1680,7 +1680,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MapleTree path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1715,7 +1715,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GrassPatch path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1750,7 +1750,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallBush path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1785,7 +1785,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleLamp path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1820,7 +1820,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleCeilingLamp path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1855,7 +1855,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EvergreenTree path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1890,7 +1890,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BirchTree path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1925,7 +1925,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OakTree path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1960,7 +1960,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cypress path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -1995,7 +1995,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SquarePlantPots path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2030,7 +2030,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WindowPlants path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2065,7 +2065,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TreeStumps path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2100,7 +2100,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wisteria path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2135,7 +2135,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernWoodworkingLamp path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2170,7 +2170,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SwirlWoodworkingLamp path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2205,7 +2205,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EdisonWoodworkingLamp path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2240,7 +2240,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DecorativeLogPile path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2275,7 +2275,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TraditionalFireplace path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2310,7 +2310,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallChimney path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2345,7 +2345,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DecorativeKite path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2380,7 +2380,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GlassPenCup path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2415,7 +2415,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Succulents path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2450,7 +2450,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Decor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LargePotPlant path: ../TinyLife/Objects/FurnitureType.Decor.cs @@ -2485,7 +2485,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleDesk path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2520,7 +2520,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LongDinnerTable path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2555,7 +2555,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SquareDinnerTable path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2590,7 +2590,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleChair path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2625,7 +2625,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleToilet path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2660,7 +2660,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernBed path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2695,7 +2695,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernSingleBed path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2730,7 +2730,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernFridge path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2765,7 +2765,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleShower path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2800,7 +2800,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleCounter path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2835,7 +2835,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleBar path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2870,7 +2870,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernStove path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2905,7 +2905,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernComputer path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2940,7 +2940,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernSink path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -2975,7 +2975,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mailbox path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3010,7 +3010,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleDrawer path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3045,7 +3045,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleEasel path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3080,7 +3080,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleBench path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3115,7 +3115,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallMirror path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3150,7 +3150,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleBookshelf path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3185,7 +3185,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernTv path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3220,7 +3220,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MixologyKit path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3255,7 +3255,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleSofa path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3290,7 +3290,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleLowTable path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3325,7 +3325,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleWallSink path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3360,7 +3360,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Treadmill path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3395,7 +3395,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DumbbellRack path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3430,7 +3430,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VerticalDumbbellRack path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3465,7 +3465,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StandingDesk path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3500,7 +3500,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeKit path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3535,7 +3535,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallBarbecue path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3570,7 +3570,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimplePicnicTable path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3605,7 +3605,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallPicnicTable path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3640,7 +3640,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ParkTrashCan path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3675,7 +3675,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingTable path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3710,7 +3710,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OrnateBed path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3745,7 +3745,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OrnateFlowerBed path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3780,7 +3780,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OrnateSingleBed path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3815,7 +3815,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FourPostBed path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3850,7 +3850,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TraditionalCounter path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3885,7 +3885,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TraditionalBar path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3920,7 +3920,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CushionedWoodworkingSofa path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3955,7 +3955,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FullyCushionedWoodworkingSofa path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -3990,7 +3990,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LargeWoodworkingSofa path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4025,7 +4025,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingChairArmrests path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4060,7 +4060,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingChair path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4095,7 +4095,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingCloset path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4130,7 +4130,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodenToyBox path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4165,7 +4165,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChildStove path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4200,7 +4200,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sandbox path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4235,7 +4235,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.Misc.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Puzzle path: ../TinyLife/Objects/FurnitureType.Misc.cs @@ -4270,7 +4270,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmptyPlate path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4305,7 +4305,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmptyPlatter path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4340,7 +4340,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmptyGlass path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4375,7 +4375,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnpreparedFood path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4410,7 +4410,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PreparedFood path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4445,7 +4445,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pot path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4480,7 +4480,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodPlate path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4515,7 +4515,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodPlatter path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4550,7 +4550,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodGlass path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4585,7 +4585,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CustomPainting path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4620,7 +4620,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Book path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4655,7 +4655,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Puddle path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4690,7 +4690,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gravestone path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4725,7 +4725,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sponge path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4760,7 +4760,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Spanner path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4795,7 +4795,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PaintBrush path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4830,7 +4830,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mop path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4865,7 +4865,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dumbbell path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4900,7 +4900,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GrillingFood path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4935,7 +4935,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnfinishedWoodwork path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -4970,7 +4970,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HomeworkBook path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -5005,7 +5005,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToyCar path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs @@ -5040,7 +5040,7 @@ items: source: remote: path: TinyLife/Objects/FurnitureType.NonBuyable.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallShovel path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs diff --git a/docs/api/TinyLife.Objects.Gravestone.yml b/docs/api/TinyLife.Objects.Gravestone.yml index c6d6f7a..a4a6eb3 100644 --- a/docs/api/TinyLife.Objects.Gravestone.yml +++ b/docs/api/TinyLife.Objects.Gravestone.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Objects/Gravestone.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gravestone path: ../TinyLife/Objects/Gravestone.cs @@ -153,7 +153,7 @@ items: source: remote: path: TinyLife/Objects/Gravestone.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DeadPerson path: ../TinyLife/Objects/Gravestone.cs @@ -190,7 +190,7 @@ items: source: remote: path: TinyLife/Objects/Gravestone.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reason path: ../TinyLife/Objects/Gravestone.cs @@ -233,7 +233,7 @@ items: source: remote: path: TinyLife/Objects/Gravestone.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Gravestone.cs @@ -284,7 +284,7 @@ items: source: remote: path: TinyLife/Objects/Gravestone.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHoverInfo path: ../TinyLife/Objects/Gravestone.cs diff --git a/docs/api/TinyLife.Objects.IUpdatingObject.yml b/docs/api/TinyLife.Objects.IUpdatingObject.yml index 8d0e8d7..d8272a7 100644 --- a/docs/api/TinyLife.Objects.IUpdatingObject.yml +++ b/docs/api/TinyLife.Objects.IUpdatingObject.yml @@ -16,7 +16,7 @@ items: source: remote: path: TinyLife/Objects/IUpdatingObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IUpdatingObject path: ../TinyLife/Objects/IUpdatingObject.cs @@ -51,7 +51,7 @@ items: source: remote: path: TinyLife/Objects/IUpdatingObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/IUpdatingObject.cs diff --git a/docs/api/TinyLife.Objects.Light.yml b/docs/api/TinyLife.Objects.Light.yml index 7d3a6d7..1402984 100644 --- a/docs/api/TinyLife.Objects.Light.yml +++ b/docs/api/TinyLife.Objects.Light.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Light path: ../TinyLife/Objects/Light.cs @@ -70,7 +70,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CircleTexture path: ../TinyLife/Objects/Light.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/Objects/Light.cs @@ -142,7 +142,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Objects/Light.cs @@ -177,7 +177,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpwardsOffset path: ../TinyLife/Objects/Light.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Position path: ../TinyLife/Objects/Light.cs @@ -247,7 +247,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Size path: ../TinyLife/Objects/Light.cs @@ -280,7 +280,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Color path: ../TinyLife/Objects/Light.cs @@ -313,7 +313,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsDisabled path: ../TinyLife/Objects/Light.cs @@ -346,7 +346,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Light.cs @@ -394,7 +394,7 @@ items: source: remote: path: TinyLife/Objects/Light.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Light.cs diff --git a/docs/api/TinyLife.Objects.LightFurniture.yml b/docs/api/TinyLife.Objects.LightFurniture.yml index 130f2bf..47f1696 100644 --- a/docs/api/TinyLife.Objects.LightFurniture.yml +++ b/docs/api/TinyLife.Objects.LightFurniture.yml @@ -24,7 +24,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LightFurniture path: ../TinyLife/Objects/LightFurniture.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lights path: ../TinyLife/Objects/LightFurniture.cs @@ -196,7 +196,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsDisabled path: ../TinyLife/Objects/LightFurniture.cs @@ -239,7 +239,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsElectrical path: ../TinyLife/Objects/LightFurniture.cs @@ -278,7 +278,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/LightFurniture.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/LightFurniture.cs @@ -375,7 +375,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnAdded path: ../TinyLife/Objects/LightFurniture.cs @@ -410,7 +410,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnRemoved path: ../TinyLife/Objects/LightFurniture.cs @@ -445,7 +445,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/LightFurniture.cs @@ -483,7 +483,7 @@ items: source: remote: path: TinyLife/Objects/LightFurniture.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateLights path: ../TinyLife/Objects/LightFurniture.cs diff --git a/docs/api/TinyLife.Objects.MapObject.yml b/docs/api/TinyLife.Objects.MapObject.yml index f5613ef..2c7ff8e 100644 --- a/docs/api/TinyLife.Objects.MapObject.yml +++ b/docs/api/TinyLife.Objects.MapObject.yml @@ -46,7 +46,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MapObject path: ../TinyLife/Objects/MapObject.cs @@ -113,7 +113,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonRotationOrder path: ../TinyLife/Objects/MapObject.cs @@ -150,7 +150,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCreated path: ../TinyLife/Objects/MapObject.cs @@ -185,7 +185,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnValidated path: ../TinyLife/Objects/MapObject.cs @@ -220,7 +220,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnEventsAttachable path: ../TinyLife/Objects/MapObject.cs @@ -255,7 +255,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnDraw path: ../TinyLife/Objects/MapObject.cs @@ -288,7 +288,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnUpdate path: ../TinyLife/Objects/MapObject.cs @@ -321,7 +321,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Id path: ../TinyLife/Objects/MapObject.cs @@ -370,7 +370,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/Objects/MapObject.cs @@ -407,7 +407,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Position path: ../TinyLife/Objects/MapObject.cs @@ -456,7 +456,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentLot path: ../TinyLife/Objects/MapObject.cs @@ -493,7 +493,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsInWorld path: ../TinyLife/Objects/MapObject.cs @@ -530,7 +530,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/MapObject.cs @@ -572,7 +572,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/MapObject.cs @@ -622,7 +622,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Intersects path: ../TinyLife/Objects/MapObject.cs @@ -663,7 +663,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/MapObject.cs @@ -700,7 +700,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCategories path: ../TinyLife/Objects/MapObject.cs @@ -741,7 +741,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnAdded path: ../TinyLife/Objects/MapObject.cs @@ -775,7 +775,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnRemoved path: ../TinyLife/Objects/MapObject.cs @@ -809,7 +809,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHoverInfo path: ../TinyLife/Objects/MapObject.cs @@ -846,7 +846,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAiPriority path: ../TinyLife/Objects/MapObject.cs @@ -890,7 +890,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanExecuteAction path: ../TinyLife/Objects/MapObject.cs @@ -940,7 +940,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnActionCompleted path: ../TinyLife/Objects/MapObject.cs @@ -984,7 +984,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionUpdate path: ../TinyLife/Objects/MapObject.cs @@ -1034,7 +1034,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetVisibility path: ../TinyLife/Objects/MapObject.cs @@ -1071,7 +1071,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeActionSpotInfo path: ../TinyLife/Objects/MapObject.cs @@ -1115,7 +1115,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCameraRotationChanged path: ../TinyLife/Objects/MapObject.cs @@ -1156,7 +1156,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetMapAndValidate path: ../TinyLife/Objects/MapObject.cs @@ -1195,7 +1195,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasCategory path: ../TinyLife/Objects/MapObject.cs @@ -1237,7 +1237,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetEfficiencyModifier path: ../TinyLife/Objects/MapObject.cs @@ -1290,7 +1290,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawColumns path: ../TinyLife/Objects/MapObject.cs @@ -1382,7 +1382,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetModCategory path: ../TinyLife/Objects/MapObject.cs diff --git a/docs/api/TinyLife.Objects.ObjectCategory.yml b/docs/api/TinyLife.Objects.ObjectCategory.yml index fcfd713..6453c5d 100644 --- a/docs/api/TinyLife.Objects.ObjectCategory.yml +++ b/docs/api/TinyLife.Objects.ObjectCategory.yml @@ -81,7 +81,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ObjectCategory path: ../TinyLife/Objects/MapObject.cs @@ -147,7 +147,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Nothing path: ../TinyLife/Objects/MapObject.cs @@ -184,7 +184,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Ground path: ../TinyLife/Objects/MapObject.cs @@ -221,7 +221,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Chair path: ../TinyLife/Objects/MapObject.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Toilet path: ../TinyLife/Objects/MapObject.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SingleBed path: ../TinyLife/Objects/MapObject.cs @@ -332,7 +332,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DoubleBed path: ../TinyLife/Objects/MapObject.cs @@ -369,7 +369,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fridge path: ../TinyLife/Objects/MapObject.cs @@ -406,7 +406,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Shower path: ../TinyLife/Objects/MapObject.cs @@ -443,7 +443,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Counter path: ../TinyLife/Objects/MapObject.cs @@ -480,7 +480,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Stove path: ../TinyLife/Objects/MapObject.cs @@ -517,7 +517,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallObject path: ../TinyLife/Objects/MapObject.cs @@ -554,7 +554,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NonBuyable path: ../TinyLife/Objects/MapObject.cs @@ -591,7 +591,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Table path: ../TinyLife/Objects/MapObject.cs @@ -628,7 +628,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Holdable path: ../TinyLife/Objects/MapObject.cs @@ -665,7 +665,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DeskObject path: ../TinyLife/Objects/MapObject.cs @@ -702,7 +702,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisallowedOnGround path: ../TinyLife/Objects/MapObject.cs @@ -739,7 +739,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Computer path: ../TinyLife/Objects/MapObject.cs @@ -776,7 +776,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sink path: ../TinyLife/Objects/MapObject.cs @@ -813,7 +813,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CounterObject path: ../TinyLife/Objects/MapObject.cs @@ -850,7 +850,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cleanable path: ../TinyLife/Objects/MapObject.cs @@ -887,7 +887,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: People path: ../TinyLife/Objects/MapObject.cs @@ -924,7 +924,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mailbox path: ../TinyLife/Objects/MapObject.cs @@ -961,7 +961,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wardrobe path: ../TinyLife/Objects/MapObject.cs @@ -998,7 +998,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NaturalGroundRequired path: ../TinyLife/Objects/MapObject.cs @@ -1035,7 +1035,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Self path: ../TinyLife/Objects/MapObject.cs @@ -1072,7 +1072,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallHanging path: ../TinyLife/Objects/MapObject.cs @@ -1109,7 +1109,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ForceGridPlacement path: ../TinyLife/Objects/MapObject.cs @@ -1146,7 +1146,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Easel path: ../TinyLife/Objects/MapObject.cs @@ -1183,7 +1183,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mirror path: ../TinyLife/Objects/MapObject.cs @@ -1220,7 +1220,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bookshelf path: ../TinyLife/Objects/MapObject.cs @@ -1257,7 +1257,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NonColliding path: ../TinyLife/Objects/MapObject.cs @@ -1294,7 +1294,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gravestone path: ../TinyLife/Objects/MapObject.cs @@ -1331,7 +1331,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NonSellable path: ../TinyLife/Objects/MapObject.cs @@ -1368,7 +1368,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NonMovable path: ../TinyLife/Objects/MapObject.cs @@ -1405,7 +1405,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tree path: ../TinyLife/Objects/MapObject.cs @@ -1442,7 +1442,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Television path: ../TinyLife/Objects/MapObject.cs @@ -1479,7 +1479,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BartendingObject path: ../TinyLife/Objects/MapObject.cs @@ -1516,7 +1516,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Walls path: ../TinyLife/Objects/MapObject.cs @@ -1553,7 +1553,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LargeSurfaceObject path: ../TinyLife/Objects/MapObject.cs @@ -1590,7 +1590,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StandingDesk path: ../TinyLife/Objects/MapObject.cs @@ -1627,7 +1627,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lamp path: ../TinyLife/Objects/MapObject.cs @@ -1664,7 +1664,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CeilingHanging path: ../TinyLife/Objects/MapObject.cs @@ -1701,7 +1701,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCoverWindow path: ../TinyLife/Objects/MapObject.cs @@ -1738,7 +1738,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCoverDoor path: ../TinyLife/Objects/MapObject.cs @@ -1775,7 +1775,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Barbecue path: ../TinyLife/Objects/MapObject.cs @@ -1812,7 +1812,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TrashCan path: ../TinyLife/Objects/MapObject.cs @@ -1849,7 +1849,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBeThrownAway path: ../TinyLife/Objects/MapObject.cs @@ -1886,7 +1886,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBeScrapped path: ../TinyLife/Objects/MapObject.cs @@ -1923,7 +1923,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ObstructedByRoofs path: ../TinyLife/Objects/MapObject.cs @@ -1960,7 +1960,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofAttached path: ../TinyLife/Objects/MapObject.cs @@ -1997,7 +1997,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fireplaces path: ../TinyLife/Objects/MapObject.cs @@ -2034,7 +2034,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToyBox path: ../TinyLife/Objects/MapObject.cs @@ -2071,7 +2071,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingItem path: ../TinyLife/Objects/MapObject.cs @@ -2108,7 +2108,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChildStove path: ../TinyLife/Objects/MapObject.cs @@ -2145,7 +2145,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sandbox path: ../TinyLife/Objects/MapObject.cs @@ -2182,7 +2182,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Treadmill path: ../TinyLife/Objects/MapObject.cs @@ -2219,7 +2219,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DumbbellHolder path: ../TinyLife/Objects/MapObject.cs @@ -2256,7 +2256,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/MapObject.cs @@ -2292,7 +2292,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_Implicit path: ../TinyLife/Objects/MapObject.cs @@ -2332,7 +2332,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_Implicit path: ../TinyLife/Objects/MapObject.cs @@ -2372,7 +2372,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_Implicit path: ../TinyLife/Objects/MapObject.cs @@ -2412,7 +2412,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_Implicit path: ../TinyLife/Objects/MapObject.cs @@ -2452,7 +2452,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_BitwiseOr path: ../TinyLife/Objects/MapObject.cs @@ -2491,7 +2491,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_BitwiseAnd path: ../TinyLife/Objects/MapObject.cs @@ -2530,7 +2530,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_ExclusiveOr path: ../TinyLife/Objects/MapObject.cs @@ -2569,7 +2569,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_OnesComplement path: ../TinyLife/Objects/MapObject.cs diff --git a/docs/api/TinyLife.Objects.ObjectSpot.yml b/docs/api/TinyLife.Objects.ObjectSpot.yml index 30a7e45..3b64fb3 100644 --- a/docs/api/TinyLife.Objects.ObjectSpot.yml +++ b/docs/api/TinyLife.Objects.ObjectSpot.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ObjectSpot path: ../TinyLife/Objects/ActionSpot.cs @@ -83,7 +83,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsFurnitureAllowed path: ../TinyLife/Objects/ActionSpot.cs @@ -118,7 +118,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ActionSpot.cs @@ -166,7 +166,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ActionSpot.cs @@ -217,7 +217,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetContents path: ../TinyLife/Objects/ActionSpot.cs @@ -267,7 +267,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TableSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -308,7 +308,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PicnicTableSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -349,7 +349,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CounterSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -393,7 +393,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BarSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -430,7 +430,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DoubleShelfSpots path: ../TinyLife/Objects/ActionSpot.cs @@ -471,7 +471,7 @@ items: source: remote: path: TinyLife/Objects/ActionSpot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DeskSpots path: ../TinyLife/Objects/ActionSpot.cs diff --git a/docs/api/TinyLife.Objects.Outfit.yml b/docs/api/TinyLife.Objects.Outfit.yml index 35f6949..b5fda7a 100644 --- a/docs/api/TinyLife.Objects.Outfit.yml +++ b/docs/api/TinyLife.Objects.Outfit.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Outfit path: ../TinyLife/Objects/Clothes.cs @@ -75,7 +75,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Clothes path: ../TinyLife/Objects/Clothes.cs @@ -120,7 +120,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Intentions path: ../TinyLife/Objects/Clothes.cs @@ -163,7 +163,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Clothes.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIntentionPercentage path: ../TinyLife/Objects/Clothes.cs @@ -241,7 +241,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EnsureIntentionsMatch path: ../TinyLife/Objects/Clothes.cs diff --git a/docs/api/TinyLife.Objects.OverlayWallHanging.yml b/docs/api/TinyLife.Objects.OverlayWallHanging.yml index 5b194ff..aaa48b0 100644 --- a/docs/api/TinyLife.Objects.OverlayWallHanging.yml +++ b/docs/api/TinyLife.Objects.OverlayWallHanging.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Objects/OverlayWallHanging.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OverlayWallHanging path: ../TinyLife/Objects/OverlayWallHanging.cs @@ -151,7 +151,7 @@ items: source: remote: path: TinyLife/Objects/OverlayWallHanging.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/OverlayWallHanging.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Objects/OverlayWallHanging.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/OverlayWallHanging.cs diff --git a/docs/api/TinyLife.Objects.Painting.yml b/docs/api/TinyLife.Objects.Painting.yml index bd7f37a..914d078 100644 --- a/docs/api/TinyLife.Objects.Painting.yml +++ b/docs/api/TinyLife.Objects.Painting.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Painting path: ../TinyLife/Objects/Painting.cs @@ -153,7 +153,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PaintingType path: ../TinyLife/Objects/Painting.cs @@ -196,7 +196,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Progress path: ../TinyLife/Objects/Painting.cs @@ -239,7 +239,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Painting.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Painting.cs @@ -368,7 +368,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/Objects/Painting.cs @@ -406,7 +406,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/Painting.cs @@ -444,7 +444,7 @@ items: source: remote: path: TinyLife/Objects/Painting.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHoverInfo path: ../TinyLife/Objects/Painting.cs diff --git a/docs/api/TinyLife.Objects.Particle.yml b/docs/api/TinyLife.Objects.Particle.yml index 0c25f7a..93daf68 100644 --- a/docs/api/TinyLife.Objects.Particle.yml +++ b/docs/api/TinyLife.Objects.Particle.yml @@ -35,7 +35,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Particle path: ../TinyLife/Objects/Particle.cs @@ -80,7 +80,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/Objects/Particle.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisualPosition path: ../TinyLife/Objects/Particle.cs @@ -156,7 +156,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Friction path: ../TinyLife/Objects/Particle.cs @@ -189,7 +189,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TimeToLive path: ../TinyLife/Objects/Particle.cs @@ -222,7 +222,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Position path: ../TinyLife/Objects/Particle.cs @@ -255,7 +255,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Motion path: ../TinyLife/Objects/Particle.cs @@ -288,7 +288,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DepthOffset path: ../TinyLife/Objects/Particle.cs @@ -321,7 +321,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawOffset path: ../TinyLife/Objects/Particle.cs @@ -354,7 +354,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Scale path: ../TinyLife/Objects/Particle.cs @@ -387,7 +387,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gravity path: ../TinyLife/Objects/Particle.cs @@ -420,7 +420,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpwardsMotion path: ../TinyLife/Objects/Particle.cs @@ -453,7 +453,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpwardsOffset path: ../TinyLife/Objects/Particle.cs @@ -486,7 +486,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AttachedFurniture path: ../TinyLife/Objects/Particle.cs @@ -519,7 +519,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Animation path: ../TinyLife/Objects/Particle.cs @@ -554,7 +554,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TimeLived path: ../TinyLife/Objects/Particle.cs @@ -587,7 +587,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Particle.cs @@ -629,7 +629,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Particle.cs @@ -671,7 +671,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/Particle.cs @@ -715,7 +715,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Particle.cs @@ -756,7 +756,7 @@ items: source: remote: path: TinyLife/Objects/Particle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Spawn path: ../TinyLife/Objects/Particle.cs diff --git a/docs/api/TinyLife.Objects.Person.ActionUpdateDelegate.yml b/docs/api/TinyLife.Objects.Person.ActionUpdateDelegate.yml index c23b02b..7373db5 100644 --- a/docs/api/TinyLife.Objects.Person.ActionUpdateDelegate.yml +++ b/docs/api/TinyLife.Objects.Person.ActionUpdateDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionUpdateDelegate path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.Person.DeathReason.yml b/docs/api/TinyLife.Objects.Person.DeathReason.yml index e4abcf8..4eea09f 100644 --- a/docs/api/TinyLife.Objects.Person.DeathReason.yml +++ b/docs/api/TinyLife.Objects.Person.DeathReason.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DeathReason path: ../TinyLife/Objects/Person.cs @@ -54,7 +54,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Starvation path: ../TinyLife/Objects/Person.cs @@ -88,7 +88,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InexplicableReasons path: ../TinyLife/Objects/Person.cs @@ -122,7 +122,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Electrocution path: ../TinyLife/Objects/Person.cs @@ -156,7 +156,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TooMuchProtein path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.Person.EfficiencyModifierDelegate.yml b/docs/api/TinyLife.Objects.Person.EfficiencyModifierDelegate.yml index d7d415a..6c1d172 100644 --- a/docs/api/TinyLife.Objects.Person.EfficiencyModifierDelegate.yml +++ b/docs/api/TinyLife.Objects.Person.EfficiencyModifierDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EfficiencyModifierDelegate path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.Person.PassiveActionPriorityDelegate.yml b/docs/api/TinyLife.Objects.Person.PassiveActionPriorityDelegate.yml index 420083b..172310e 100644 --- a/docs/api/TinyLife.Objects.Person.PassiveActionPriorityDelegate.yml +++ b/docs/api/TinyLife.Objects.Person.PassiveActionPriorityDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassiveActionPriorityDelegate path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.Person.Pose.yml b/docs/api/TinyLife.Objects.Person.Pose.yml index 7d0db59..4bd18e6 100644 --- a/docs/api/TinyLife.Objects.Person.Pose.yml +++ b/docs/api/TinyLife.Objects.Person.Pose.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pose path: ../TinyLife/Objects/Person.cs @@ -61,7 +61,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Standing path: ../TinyLife/Objects/Person.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Walking path: ../TinyLife/Objects/Person.cs @@ -129,7 +129,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sitting path: ../TinyLife/Objects/Person.cs @@ -163,7 +163,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Laying path: ../TinyLife/Objects/Person.cs @@ -197,7 +197,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SittingGround path: ../TinyLife/Objects/Person.cs @@ -231,7 +231,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkingStanding path: ../TinyLife/Objects/Person.cs @@ -265,7 +265,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkingSitting path: ../TinyLife/Objects/Person.cs @@ -299,7 +299,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkingSittingGround path: ../TinyLife/Objects/Person.cs @@ -333,7 +333,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Running path: ../TinyLife/Objects/Person.cs @@ -367,7 +367,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StandingArmsOut path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.Person.WalkSpeedDelegate.yml b/docs/api/TinyLife.Objects.Person.WalkSpeedDelegate.yml index 7192b74..df8c42a 100644 --- a/docs/api/TinyLife.Objects.Person.WalkSpeedDelegate.yml +++ b/docs/api/TinyLife.Objects.Person.WalkSpeedDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WalkSpeedDelegate path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.Person.yml b/docs/api/TinyLife.Objects.Person.yml index 71d067b..7eff7aa 100644 --- a/docs/api/TinyLife.Objects.Person.yml +++ b/docs/api/TinyLife.Objects.Person.yml @@ -154,7 +154,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Person path: ../TinyLife/Objects/Person.cs @@ -233,7 +233,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxRecentActionsAmount path: ../TinyLife/Objects/Person.cs @@ -268,7 +268,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentActions path: ../TinyLife/Objects/Person.cs @@ -313,7 +313,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ActionQueue path: ../TinyLife/Objects/Person.cs @@ -358,7 +358,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AllActions path: ../TinyLife/Objects/Person.cs @@ -395,7 +395,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Needs path: ../TinyLife/Objects/Person.cs @@ -440,7 +440,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Skills path: ../TinyLife/Objects/Person.cs @@ -485,7 +485,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Relationships path: ../TinyLife/Objects/Person.cs @@ -530,7 +530,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Outfits path: ../TinyLife/Objects/Person.cs @@ -579,7 +579,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonalityTypes path: ../TinyLife/Objects/Person.cs @@ -624,7 +624,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EmotionModifiers path: ../TinyLife/Objects/Person.cs @@ -669,7 +669,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Projects path: ../TinyLife/Objects/Person.cs @@ -714,7 +714,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Portrait path: ../TinyLife/Objects/Person.cs @@ -749,7 +749,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RecentActions path: ../TinyLife/Objects/Person.cs @@ -794,7 +794,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OccupiedFurniture path: ../TinyLife/Objects/Person.cs @@ -829,7 +829,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FirstName path: ../TinyLife/Objects/Person.cs @@ -872,7 +872,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LastName path: ../TinyLife/Objects/Person.cs @@ -915,7 +915,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FullName path: ../TinyLife/Objects/Person.cs @@ -952,7 +952,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VoiceStyle path: ../TinyLife/Objects/Person.cs @@ -995,7 +995,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VoicePitch path: ../TinyLife/Objects/Person.cs @@ -1038,7 +1038,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rotation path: ../TinyLife/Objects/Person.cs @@ -1075,7 +1075,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Household path: ../TinyLife/Objects/Person.cs @@ -1112,7 +1112,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentEmote path: ../TinyLife/Objects/Person.cs @@ -1149,7 +1149,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentSpeakStyle path: ../TinyLife/Objects/Person.cs @@ -1186,7 +1186,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawSize path: ../TinyLife/Objects/Person.cs @@ -1223,7 +1223,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LastVisitedLot path: ../TinyLife/Objects/Person.cs @@ -1260,7 +1260,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LotVisitCooldown path: ../TinyLife/Objects/Person.cs @@ -1311,7 +1311,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Job path: ../TinyLife/Objects/Person.cs @@ -1358,7 +1358,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Emotion path: ../TinyLife/Objects/Person.cs @@ -1395,7 +1395,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentRoom path: ../TinyLife/Objects/Person.cs @@ -1432,7 +1432,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentRoomDecorativeRating path: ../TinyLife/Objects/Person.cs @@ -1469,7 +1469,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LastBedSleptIn path: ../TinyLife/Objects/Person.cs @@ -1516,7 +1516,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsMoving path: ../TinyLife/Objects/Person.cs @@ -1553,7 +1553,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LotEmployment path: ../TinyLife/Objects/Person.cs @@ -1600,7 +1600,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentOutfitIndex path: ../TinyLife/Objects/Person.cs @@ -1647,7 +1647,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentOutfit path: ../TinyLife/Objects/Person.cs @@ -1684,7 +1684,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCurrentHousehold path: ../TinyLife/Objects/Person.cs @@ -1721,7 +1721,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HomeLot path: ../TinyLife/Objects/Person.cs @@ -1758,7 +1758,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Money path: ../TinyLife/Objects/Person.cs @@ -1795,7 +1795,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsAsexual path: ../TinyLife/Objects/Person.cs @@ -1851,7 +1851,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsAromantic path: ../TinyLife/Objects/Person.cs @@ -1907,7 +1907,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsRegularVisitor path: ../TinyLife/Objects/Person.cs @@ -1944,7 +1944,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Age path: ../TinyLife/Objects/Person.cs @@ -1981,7 +1981,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LifeGoal path: ../TinyLife/Objects/Person.cs @@ -2018,7 +2018,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Description path: ../TinyLife/Objects/Person.cs @@ -2061,7 +2061,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsDead path: ../TinyLife/Objects/Person.cs @@ -2098,7 +2098,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CurrentPose path: ../TinyLife/Objects/Person.cs @@ -2141,7 +2141,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WornLayers path: ../TinyLife/Objects/Person.cs @@ -2184,7 +2184,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AnimateHeldObject path: ../TinyLife/Objects/Person.cs @@ -2217,7 +2217,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HeldObjectRotation path: ../TinyLife/Objects/Person.cs @@ -2250,7 +2250,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisuallyOccupiedSpot path: ../TinyLife/Objects/Person.cs @@ -2287,7 +2287,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AnimationSpeed path: ../TinyLife/Objects/Person.cs @@ -2320,7 +2320,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tint path: ../TinyLife/Objects/Person.cs @@ -2353,7 +2353,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisualPosition path: ../TinyLife/Objects/Person.cs @@ -2390,7 +2390,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnActionsChanged path: ../TinyLife/Objects/Person.cs @@ -2423,7 +2423,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNewSkillLearned path: ../TinyLife/Objects/Person.cs @@ -2456,7 +2456,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnJobChanged path: ../TinyLife/Objects/Person.cs @@ -2489,7 +2489,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnEmotionModifiersChanged path: ../TinyLife/Objects/Person.cs @@ -2522,7 +2522,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnEmotionChanged path: ../TinyLife/Objects/Person.cs @@ -2555,7 +2555,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetEfficiencyModifier path: ../TinyLife/Objects/Person.cs @@ -2588,7 +2588,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetWalkSpeed path: ../TinyLife/Objects/Person.cs @@ -2621,7 +2621,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetPassiveActionPriority path: ../TinyLife/Objects/Person.cs @@ -2654,7 +2654,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnActionInitialized path: ../TinyLife/Objects/Person.cs @@ -2687,7 +2687,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnActionsCompleted path: ../TinyLife/Objects/Person.cs @@ -2720,7 +2720,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnActionUpdated path: ../TinyLife/Objects/Person.cs @@ -2753,7 +2753,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnOutfitChanged path: ../TinyLife/Objects/Person.cs @@ -2786,7 +2786,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetCurrentGoals path: ../TinyLife/Objects/Person.cs @@ -2819,7 +2819,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnLifeGoalChanged path: ../TinyLife/Objects/Person.cs @@ -2852,7 +2852,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Person.cs @@ -2891,7 +2891,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Finalize path: ../TinyLife/Objects/Person.cs @@ -2922,7 +2922,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/Person.cs @@ -2966,7 +2966,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Person.cs @@ -3016,7 +3016,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/Person.cs @@ -3054,7 +3054,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCategories path: ../TinyLife/Objects/Person.cs @@ -3096,7 +3096,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Intersects path: ../TinyLife/Objects/Person.cs @@ -3138,7 +3138,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHoverInfo path: ../TinyLife/Objects/Person.cs @@ -3176,7 +3176,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeActionSpotInfo path: ../TinyLife/Objects/Person.cs @@ -3221,7 +3221,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCameraRotationChanged path: ../TinyLife/Objects/Person.cs @@ -3263,7 +3263,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FocusCameraOnEvent path: ../TinyLife/Objects/Person.cs @@ -3295,7 +3295,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetJob path: ../TinyLife/Objects/Person.cs @@ -3334,7 +3334,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ResetToStatic path: ../TinyLife/Objects/Person.cs @@ -3370,7 +3370,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PrepareForPermanentRemoval path: ../TinyLife/Objects/Person.cs @@ -3402,7 +3402,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VisitLot path: ../TinyLife/Objects/Person.cs @@ -3438,7 +3438,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawUi path: ../TinyLife/Objects/Person.cs @@ -3483,7 +3483,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHomeLocation path: ../TinyLife/Objects/Person.cs @@ -3518,7 +3518,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRelationship path: ../TinyLife/Objects/Person.cs @@ -3560,7 +3560,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChangeFriendship path: ../TinyLife/Objects/Person.cs @@ -3599,7 +3599,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChangeRomance path: ../TinyLife/Objects/Person.cs @@ -3638,7 +3638,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayEmote path: ../TinyLife/Objects/Person.cs @@ -3680,7 +3680,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StopEmoting path: ../TinyLife/Objects/Person.cs @@ -3712,7 +3712,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Speak path: ../TinyLife/Objects/Person.cs @@ -3754,7 +3754,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StopSpeaking path: ../TinyLife/Objects/Person.cs @@ -3786,7 +3786,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayEmoteAndSpeak path: ../TinyLife/Objects/Person.cs @@ -3831,7 +3831,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeTalkingSpots path: ../TinyLife/Objects/Person.cs @@ -3869,7 +3869,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OccupyActionSpot path: ../TinyLife/Objects/Person.cs @@ -3880,7 +3880,7 @@ items: summary: "\nCauses the given action spot of the given furniture to be marked as occupied.\nOptionally, the can also be changed, causing this person to look as if they were sitting, standing or laying on the furniture.\nNote that the values set in this method are reset every call.\n" example: [] syntax: - content: public void OccupyActionSpot(Furniture furniture, ActionSpot spot, bool enterSpot, Direction2? rotation = null) + content: public void OccupyActionSpot(Furniture furniture, ActionSpot spot, bool enterSpot, Direction2? rotation = default(Direction2? )) parameters: - id: furniture type: TinyLife.Objects.Furniture @@ -3917,7 +3917,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OccupyFreeActionSpot path: ../TinyLife/Objects/Person.cs @@ -3928,7 +3928,7 @@ items: summary: "\nThis is a shorthand method for and .\nNote that this method needs to be called every update frame for the person to keep occupying the action spot.\n" example: [] syntax: - content: public bool OccupyFreeActionSpot(Furniture furniture, ObjectCategory context = null, bool enter = false, Direction2? rotation = null) + content: public bool OccupyFreeActionSpot(Furniture furniture, ObjectCategory context = null, bool enter = false, Direction2? rotation = default(Direction2? )) parameters: - id: furniture type: TinyLife.Objects.Furniture @@ -3968,7 +3968,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OccupyFreeActionSpot path: ../TinyLife/Objects/Person.cs @@ -3979,7 +3979,7 @@ items: summary: "\nThis is a shorthand method for .\nNote that this method needs to be called every update frame for the person to keep occupying the action spot.\n" example: [] syntax: - content: public bool OccupyFreeActionSpot(ActionInfo info, ObjectCategory context = null, bool enter = false, Direction2? rotation = null) + content: public bool OccupyFreeActionSpot(ActionInfo info, ObjectCategory context = null, bool enter = false, Direction2? rotation = default(Direction2? )) parameters: - id: info type: TinyLife.Actions.ActionInfo @@ -4019,7 +4019,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCloseForTalking path: ../TinyLife/Objects/Person.cs @@ -4058,7 +4058,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNeed path: ../TinyLife/Objects/Person.cs @@ -4097,7 +4097,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetNeedPercentage path: ../TinyLife/Objects/Person.cs @@ -4136,7 +4136,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RestoreNeed path: ../TinyLife/Objects/Person.cs @@ -4178,7 +4178,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RestoreNeed path: ../TinyLife/Objects/Person.cs @@ -4223,7 +4223,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSkillPercentage path: ../TinyLife/Objects/Person.cs @@ -4262,7 +4262,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSkillLevel path: ../TinyLife/Objects/Person.cs @@ -4301,7 +4301,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasSkillLevel path: ../TinyLife/Objects/Person.cs @@ -4343,7 +4343,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GainSkill path: ../TinyLife/Objects/Person.cs @@ -4388,7 +4388,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DepleteNeed path: ../TinyLife/Objects/Person.cs @@ -4430,7 +4430,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasPersonality path: ../TinyLife/Objects/Person.cs @@ -4469,7 +4469,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EnqueueAction path: ../TinyLife/Objects/Person.cs @@ -4480,7 +4480,7 @@ items: summary: "\nEnqueues the given action into to be executed later.\n" example: [] syntax: - content: public Action EnqueueAction(ActionType type, ActionInfo info, bool automatic, ActionVariety? variety = null, bool priority = false, bool force = false) + content: public Action EnqueueAction(ActionType type, ActionInfo info, bool automatic, ActionVariety? variety = default(ActionVariety? ), bool priority = false, bool force = false) parameters: - id: type type: TinyLife.Actions.ActionType @@ -4526,7 +4526,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CancelAction path: ../TinyLife/Objects/Person.cs @@ -4571,7 +4571,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FindPathAsync path: ../TinyLife/Objects/Person.cs @@ -4582,7 +4582,7 @@ items: summary: "\nFinds a path asynchronously using the A* pathfinding algorithm.\nNote that the found path is not automatically embarked on.\nUsually, this method should not be used, but should be used instead.\n" example: [] syntax: - content: public Task> FindPathAsync(Point start, Point goal, AStar.GetCost costFunction = null, bool? allowDiagonals = null) + content: public Task> FindPathAsync(Point start, Point goal, AStar.GetCost costFunction = null, bool? allowDiagonals = default(bool? )) parameters: - id: start type: Microsoft.Xna.Framework.Point @@ -4622,7 +4622,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHeldObject path: ../TinyLife/Objects/Person.cs @@ -4665,7 +4665,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetHeldObject path: ../TinyLife/Objects/Person.cs @@ -4677,7 +4677,7 @@ items: example: [] syntax: content: >- - public T SetHeldObject(FurnitureType type, int[] colors = null, Guid? id = null) + public T SetHeldObject(FurnitureType type, int[] colors = null, Guid? id = default(Guid? )) where T : Furniture parameters: - id: type @@ -4718,7 +4718,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetHeldObject path: ../TinyLife/Objects/Person.cs @@ -4754,7 +4754,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHeldActionInfo path: ../TinyLife/Objects/Person.cs @@ -4789,7 +4789,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToCreatedByString path: ../TinyLife/Objects/Person.cs @@ -4824,7 +4824,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Die path: ../TinyLife/Objects/Person.cs @@ -4863,7 +4863,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddEmotion path: ../TinyLife/Objects/Person.cs @@ -4914,7 +4914,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveEmotion path: ../TinyLife/Objects/Person.cs @@ -4953,7 +4953,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LowerEmotion path: ../TinyLife/Objects/Person.cs @@ -4998,7 +4998,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LowerEmotionModifier path: ../TinyLife/Objects/Person.cs @@ -5043,7 +5043,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasEmotionModifier path: ../TinyLife/Objects/Person.cs @@ -5082,7 +5082,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWalkSpeed path: ../TinyLife/Objects/Person.cs @@ -5117,7 +5117,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetEfficiencyModifier path: ../TinyLife/Objects/Person.cs @@ -5165,7 +5165,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasHouseholdMember path: ../TinyLife/Objects/Person.cs @@ -5204,7 +5204,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasHouseholdMember path: ../TinyLife/Objects/Person.cs @@ -5242,7 +5242,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProjects path: ../TinyLife/Objects/Person.cs @@ -5281,7 +5281,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProject path: ../TinyLife/Objects/Person.cs @@ -5323,7 +5323,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StartProject path: ../TinyLife/Objects/Person.cs @@ -5362,7 +5362,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPassiveActionPriority path: ../TinyLife/Objects/Person.cs @@ -5401,7 +5401,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRandomOutfit path: ../TinyLife/Objects/Person.cs @@ -5440,7 +5440,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetCurrentOutfit path: ../TinyLife/Objects/Person.cs @@ -5479,7 +5479,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetCurrentOutfit path: ../TinyLife/Objects/Person.cs @@ -5515,7 +5515,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetNewId path: ../TinyLife/Objects/Person.cs @@ -5560,7 +5560,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsIdMatch path: ../TinyLife/Objects/Person.cs @@ -5599,7 +5599,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsIdMatch path: ../TinyLife/Objects/Person.cs @@ -5638,7 +5638,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPersonalitySkillBoost path: ../TinyLife/Objects/Person.cs @@ -5677,7 +5677,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCurrentGoals path: ../TinyLife/Objects/Person.cs @@ -5712,7 +5712,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EarnMoney path: ../TinyLife/Objects/Person.cs @@ -5751,7 +5751,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRandomSpeakSound path: ../TinyLife/Objects/Person.cs @@ -5762,7 +5762,7 @@ items: summary: "\nReturns a random sound effect which is a speak sound that matches any of the given flag values\n" example: [] syntax: - content: public static SoundEffect GetRandomSpeakSound(VoiceStyle voice, SpeakStyle style, List avoid = null, TimeSpan? maxLength = null) + content: public static SoundEffect GetRandomSpeakSound(VoiceStyle voice, SpeakStyle style, List avoid = null, TimeSpan? maxLength = default(TimeSpan? )) parameters: - id: voice type: TinyLife.Objects.VoiceStyle diff --git a/docs/api/TinyLife.Objects.PersonAi.yml b/docs/api/TinyLife.Objects.PersonAi.yml index 84cf0a0..964fd93 100644 --- a/docs/api/TinyLife.Objects.PersonAi.yml +++ b/docs/api/TinyLife.Objects.PersonAi.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Objects/PersonAi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonAi path: ../TinyLife/Objects/PersonAi.cs @@ -63,7 +63,7 @@ items: source: remote: path: TinyLife/Objects/PersonAi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StartAutomatically path: ../TinyLife/Objects/PersonAi.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Objects/PersonAi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAllActionObjects path: ../TinyLife/Objects/PersonAi.cs @@ -151,7 +151,7 @@ items: source: remote: path: TinyLife/Objects/PersonAi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRandomVariety path: ../TinyLife/Objects/PersonAi.cs diff --git a/docs/api/TinyLife.Objects.ScreenObject.yml b/docs/api/TinyLife.Objects.ScreenObject.yml index ae1ed18..250322d 100644 --- a/docs/api/TinyLife.Objects.ScreenObject.yml +++ b/docs/api/TinyLife.Objects.ScreenObject.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ScreenObject path: ../TinyLife/Objects/ScreenObject.cs @@ -162,7 +162,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ScreenContent path: ../TinyLife/Objects/ScreenObject.cs @@ -209,7 +209,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsOn path: ../TinyLife/Objects/ScreenObject.cs @@ -246,7 +246,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/ScreenObject.cs @@ -297,7 +297,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/ScreenObject.cs @@ -375,7 +375,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TurnOn path: ../TinyLife/Objects/ScreenObject.cs @@ -411,7 +411,7 @@ items: source: remote: path: TinyLife/Objects/ScreenObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TurnOff path: ../TinyLife/Objects/ScreenObject.cs diff --git a/docs/api/TinyLife.Objects.SpeakStyle.yml b/docs/api/TinyLife.Objects.SpeakStyle.yml index 14cb37b..f5b321b 100644 --- a/docs/api/TinyLife.Objects.SpeakStyle.yml +++ b/docs/api/TinyLife.Objects.SpeakStyle.yml @@ -31,7 +31,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpeakStyle path: ../TinyLife/Objects/Person.cs @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Affirmative path: ../TinyLife/Objects/Person.cs @@ -108,7 +108,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Angry path: ../TinyLife/Objects/Person.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Annoyed path: ../TinyLife/Objects/Person.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bored path: ../TinyLife/Objects/Person.cs @@ -204,7 +204,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Childish path: ../TinyLife/Objects/Person.cs @@ -236,7 +236,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Confident path: ../TinyLife/Objects/Person.cs @@ -268,7 +268,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Confused path: ../TinyLife/Objects/Person.cs @@ -300,7 +300,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Disagreeing path: ../TinyLife/Objects/Person.cs @@ -332,7 +332,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Excited path: ../TinyLife/Objects/Person.cs @@ -364,7 +364,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Happy path: ../TinyLife/Objects/Person.cs @@ -396,7 +396,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Neutral path: ../TinyLife/Objects/Person.cs @@ -428,7 +428,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Questioning path: ../TinyLife/Objects/Person.cs @@ -460,7 +460,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Sad path: ../TinyLife/Objects/Person.cs @@ -492,7 +492,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Scared path: ../TinyLife/Objects/Person.cs @@ -524,7 +524,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Shocked path: ../TinyLife/Objects/Person.cs @@ -556,7 +556,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Thinking path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.UnfinishedWoodwork.yml b/docs/api/TinyLife.Objects.UnfinishedWoodwork.yml index fdcbccc..c402b46 100644 --- a/docs/api/TinyLife.Objects.UnfinishedWoodwork.yml +++ b/docs/api/TinyLife.Objects.UnfinishedWoodwork.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnfinishedWoodwork path: ../TinyLife/Objects/UnfinishedWoodwork.cs @@ -154,7 +154,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Recipe path: ../TinyLife/Objects/UnfinishedWoodwork.cs @@ -197,7 +197,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedColors path: ../TinyLife/Objects/UnfinishedWoodwork.cs @@ -240,7 +240,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TimeWorked path: ../TinyLife/Objects/UnfinishedWoodwork.cs @@ -283,7 +283,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/UnfinishedWoodwork.cs @@ -334,7 +334,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/UnfinishedWoodwork.cs @@ -412,7 +412,7 @@ items: source: remote: path: TinyLife/Objects/UnfinishedWoodwork.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/UnfinishedWoodwork.cs diff --git a/docs/api/TinyLife.Objects.Vehicle.VehicleType.yml b/docs/api/TinyLife.Objects.Vehicle.VehicleType.yml index 314b6d8..838ac34 100644 --- a/docs/api/TinyLife.Objects.Vehicle.VehicleType.yml +++ b/docs/api/TinyLife.Objects.Vehicle.VehicleType.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VehicleType path: ../TinyLife/Objects/Vehicle.cs @@ -52,7 +52,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Car path: ../TinyLife/Objects/Vehicle.cs @@ -86,7 +86,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: EScooter path: ../TinyLife/Objects/Vehicle.cs diff --git a/docs/api/TinyLife.Objects.Vehicle.yml b/docs/api/TinyLife.Objects.Vehicle.yml index 4068b09..c784bdb 100644 --- a/docs/api/TinyLife.Objects.Vehicle.yml +++ b/docs/api/TinyLife.Objects.Vehicle.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Vehicle path: ../TinyLife/Objects/Vehicle.cs @@ -108,7 +108,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rotation path: ../TinyLife/Objects/Vehicle.cs @@ -151,7 +151,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Driver path: ../TinyLife/Objects/Vehicle.cs @@ -194,7 +194,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Objects/Vehicle.cs @@ -237,7 +237,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Vehicle.cs @@ -277,7 +277,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpdateDriving path: ../TinyLife/Objects/Vehicle.cs @@ -318,7 +318,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSpeed path: ../TinyLife/Objects/Vehicle.cs @@ -355,7 +355,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/Vehicle.cs @@ -401,7 +401,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Vehicle.cs @@ -452,7 +452,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/Vehicle.cs @@ -490,7 +490,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCameraRotationChanged path: ../TinyLife/Objects/Vehicle.cs @@ -532,7 +532,7 @@ items: source: remote: path: TinyLife/Objects/Vehicle.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnRemoved path: ../TinyLife/Objects/Vehicle.cs diff --git a/docs/api/TinyLife.Objects.Visibility.yml b/docs/api/TinyLife.Objects.Visibility.yml index e14d72c..92f9e45 100644 --- a/docs/api/TinyLife.Objects.Visibility.yml +++ b/docs/api/TinyLife.Objects.Visibility.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Visibility path: ../TinyLife/Objects/MapObject.cs @@ -53,7 +53,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WhenVisible path: ../TinyLife/Objects/MapObject.cs @@ -87,7 +87,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WhenVisibleExt path: ../TinyLife/Objects/MapObject.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/Objects/MapObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HideZoomedOut path: ../TinyLife/Objects/MapObject.cs diff --git a/docs/api/TinyLife.Objects.VoiceStyle.yml b/docs/api/TinyLife.Objects.VoiceStyle.yml index bb4cce7..841e3ba 100644 --- a/docs/api/TinyLife.Objects.VoiceStyle.yml +++ b/docs/api/TinyLife.Objects.VoiceStyle.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VoiceStyle path: ../TinyLife/Objects/Person.cs @@ -53,7 +53,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Low path: ../TinyLife/Objects/Person.cs @@ -85,7 +85,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: High path: ../TinyLife/Objects/Person.cs @@ -117,7 +117,7 @@ items: source: remote: path: TinyLife/Objects/Person.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Child path: ../TinyLife/Objects/Person.cs diff --git a/docs/api/TinyLife.Objects.WornClothes.yml b/docs/api/TinyLife.Objects.WornClothes.yml index c356a8d..c7219e4 100644 --- a/docs/api/TinyLife.Objects.WornClothes.yml +++ b/docs/api/TinyLife.Objects.WornClothes.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WornClothes path: ../TinyLife/Objects/Clothes.cs @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Objects/Clothes.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Colors path: ../TinyLife/Objects/Clothes.cs @@ -164,7 +164,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FromStorage path: ../TinyLife/Objects/Clothes.cs @@ -207,7 +207,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Clothes.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetColor path: ../TinyLife/Objects/Clothes.cs @@ -288,7 +288,7 @@ items: source: remote: path: TinyLife/Objects/Clothes.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Objects/Clothes.cs diff --git a/docs/api/TinyLife.Options.yml b/docs/api/TinyLife.Options.yml index 69c4ff9..e8008b0 100644 --- a/docs/api/TinyLife.Options.yml +++ b/docs/api/TinyLife.Options.yml @@ -59,7 +59,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Options path: ../TinyLife/Options.cs @@ -122,7 +122,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallDisplays path: ../TinyLife/Options.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GameSpeeds path: ../TinyLife/Options.cs @@ -196,7 +196,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Keybinds path: ../TinyLife/Options.cs @@ -233,7 +233,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Instance path: ../TinyLife/Options.cs @@ -272,7 +272,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InteractKeybind path: ../TinyLife/Options.cs @@ -315,7 +315,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MoveCameraKeybind path: ../TinyLife/Options.cs @@ -358,7 +358,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CopyFurnitureKeybind path: ../TinyLife/Options.cs @@ -401,7 +401,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StoreInHouseholdKeybind path: ../TinyLife/Options.cs @@ -444,7 +444,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RotateKeybind path: ../TinyLife/Options.cs @@ -487,7 +487,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SwitchPersonKeybind path: ../TinyLife/Options.cs @@ -530,7 +530,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PauseGameKeybind path: ../TinyLife/Options.cs @@ -573,7 +573,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IncreaseSpeedKeybind path: ../TinyLife/Options.cs @@ -616,7 +616,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DecreaseSpeedKeybind path: ../TinyLife/Options.cs @@ -659,7 +659,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ScreenshotKeybind path: ../TinyLife/Options.cs @@ -702,7 +702,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SellHeldObjectKeybind path: ../TinyLife/Options.cs @@ -745,7 +745,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GridKeybind path: ../TinyLife/Options.cs @@ -788,7 +788,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RotateCameraKeybind path: ../TinyLife/Options.cs @@ -831,7 +831,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ZoomInKeybind path: ../TinyLife/Options.cs @@ -874,7 +874,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ZoomOutKeybind path: ../TinyLife/Options.cs @@ -917,7 +917,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CameraUpKeybind path: ../TinyLife/Options.cs @@ -960,7 +960,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CameraDownKeybind path: ../TinyLife/Options.cs @@ -1003,7 +1003,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CameraLeftKeybind path: ../TinyLife/Options.cs @@ -1046,7 +1046,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CameraRightKeybind path: ../TinyLife/Options.cs @@ -1089,7 +1089,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayedHints path: ../TinyLife/Options.cs @@ -1134,7 +1134,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallMode path: ../TinyLife/Options.cs @@ -1171,7 +1171,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fullscreen path: ../TinyLife/Options.cs @@ -1214,7 +1214,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VSync path: ../TinyLife/Options.cs @@ -1257,7 +1257,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Language path: ../TinyLife/Options.cs @@ -1300,7 +1300,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UiScale path: ../TinyLife/Options.cs @@ -1343,7 +1343,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SoundVolume path: ../TinyLife/Options.cs @@ -1386,7 +1386,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorldSoundVolume path: ../TinyLife/Options.cs @@ -1429,7 +1429,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SpeechVolume path: ../TinyLife/Options.cs @@ -1472,7 +1472,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StingVolume path: ../TinyLife/Options.cs @@ -1515,7 +1515,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SoundscapeVolume path: ../TinyLife/Options.cs @@ -1558,7 +1558,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AutoSaveIntervalSeconds path: ../TinyLife/Options.cs @@ -1601,7 +1601,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: KeyboardLighting path: ../TinyLife/Options.cs @@ -1644,7 +1644,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CameraRotation path: ../TinyLife/Options.cs @@ -1687,7 +1687,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BrightnessIncrease path: ../TinyLife/Options.cs @@ -1730,7 +1730,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HideHangingObjects path: ../TinyLife/Options.cs @@ -1773,7 +1773,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoundCameraPosition path: ../TinyLife/Options.cs @@ -1816,7 +1816,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UiAnimations path: ../TinyLife/Options.cs @@ -1859,7 +1859,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShowBuildModeGrid path: ../TinyLife/Options.cs @@ -1902,7 +1902,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Apply path: ../TinyLife/Options.cs @@ -1934,7 +1934,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Save path: ../TinyLife/Options.cs diff --git a/docs/api/TinyLife.PerSaveOptions.yml b/docs/api/TinyLife.PerSaveOptions.yml index f97788b..bdff2d9 100644 --- a/docs/api/TinyLife.PerSaveOptions.yml +++ b/docs/api/TinyLife.PerSaveOptions.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PerSaveOptions path: ../TinyLife/Options.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Instance path: ../TinyLife/Options.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisableAiSelected path: ../TinyLife/Options.cs @@ -171,7 +171,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisableAiHousehold path: ../TinyLife/Options.cs @@ -214,7 +214,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AiImportantActions path: ../TinyLife/Options.cs @@ -257,7 +257,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AiSkillBuilding path: ../TinyLife/Options.cs @@ -300,7 +300,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AiRelationships path: ../TinyLife/Options.cs @@ -343,7 +343,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxRegularVisitors path: ../TinyLife/Options.cs @@ -386,7 +386,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LoadedMods path: ../TinyLife/Options.cs @@ -429,7 +429,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MapName path: ../TinyLife/Options.cs @@ -472,7 +472,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Save path: ../TinyLife/Options.cs @@ -507,7 +507,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Load path: ../TinyLife/Options.cs diff --git a/docs/api/TinyLife.PersonalityType.TypeCategory.yml b/docs/api/TinyLife.PersonalityType.TypeCategory.yml index 6f2fb71..c96ca80 100644 --- a/docs/api/TinyLife.PersonalityType.TypeCategory.yml +++ b/docs/api/TinyLife.PersonalityType.TypeCategory.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TypeCategory path: ../TinyLife/PersonalityType.cs @@ -53,7 +53,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Major path: ../TinyLife/PersonalityType.cs @@ -87,7 +87,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Minor path: ../TinyLife/PersonalityType.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hidden path: ../TinyLife/PersonalityType.cs diff --git a/docs/api/TinyLife.PersonalityType.yml b/docs/api/TinyLife.PersonalityType.yml index 0ecf6da..59a0fd8 100644 --- a/docs/api/TinyLife.PersonalityType.yml +++ b/docs/api/TinyLife.PersonalityType.yml @@ -47,7 +47,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonalityType path: ../TinyLife/PersonalityType.cs @@ -101,7 +101,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/PersonalityType.cs @@ -138,7 +138,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxMajorsPerPerson path: ../TinyLife/PersonalityType.cs @@ -175,7 +175,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lazy path: ../TinyLife/PersonalityType.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Energetic path: ../TinyLife/PersonalityType.cs @@ -245,7 +245,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Creative path: ../TinyLife/PersonalityType.cs @@ -280,7 +280,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Likeable path: ../TinyLife/PersonalityType.cs @@ -315,7 +315,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mean path: ../TinyLife/PersonalityType.cs @@ -350,7 +350,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Ambitious path: ../TinyLife/PersonalityType.cs @@ -385,7 +385,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Thinker path: ../TinyLife/PersonalityType.cs @@ -420,7 +420,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Introverted path: ../TinyLife/PersonalityType.cs @@ -455,7 +455,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Extroverted path: ../TinyLife/PersonalityType.cs @@ -490,7 +490,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FamilyFocused path: ../TinyLife/PersonalityType.cs @@ -525,7 +525,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Asexual path: ../TinyLife/PersonalityType.cs @@ -560,7 +560,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Aromantic path: ../TinyLife/PersonalityType.cs @@ -595,7 +595,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HatesChildren path: ../TinyLife/PersonalityType.cs @@ -630,7 +630,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MasterChef path: ../TinyLife/PersonalityType.cs @@ -665,7 +665,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmartKid path: ../TinyLife/PersonalityType.cs @@ -700,7 +700,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GymRat path: ../TinyLife/PersonalityType.cs @@ -735,7 +735,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HouseholdHero path: ../TinyLife/PersonalityType.cs @@ -770,7 +770,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ComputerAddict path: ../TinyLife/PersonalityType.cs @@ -805,7 +805,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FriendOfEveryone path: ../TinyLife/PersonalityType.cs @@ -840,7 +840,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Millionaire path: ../TinyLife/PersonalityType.cs @@ -875,7 +875,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/PersonalityType.cs @@ -910,7 +910,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/PersonalityType.cs @@ -945,7 +945,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Incompatible path: ../TinyLife/PersonalityType.cs @@ -982,7 +982,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BoostedSkills path: ../TinyLife/PersonalityType.cs @@ -1019,7 +1019,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AllowedAges path: ../TinyLife/PersonalityType.cs @@ -1056,7 +1056,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Category path: ../TinyLife/PersonalityType.cs @@ -1093,7 +1093,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SourceString path: ../TinyLife/PersonalityType.cs @@ -1132,7 +1132,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/PersonalityType.cs @@ -1171,7 +1171,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCompatible path: ../TinyLife/PersonalityType.cs @@ -1206,7 +1206,7 @@ items: source: remote: path: TinyLife/PersonalityType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/PersonalityType.cs diff --git a/docs/api/TinyLife.Relationship.yml b/docs/api/TinyLife.Relationship.yml index 686b4b3..483d610 100644 --- a/docs/api/TinyLife.Relationship.yml +++ b/docs/api/TinyLife.Relationship.yml @@ -35,7 +35,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Relationship path: ../TinyLife/Relationship.cs @@ -90,7 +90,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Max path: ../TinyLife/Relationship.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassiveFriendReduction path: ../TinyLife/Relationship.cs @@ -160,7 +160,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PassiveRomanceReduction path: ../TinyLife/Relationship.cs @@ -195,7 +195,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxRecentSocialsAmount path: ../TinyLife/Relationship.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: KnownPersonalityTypes path: ../TinyLife/Relationship.cs @@ -275,7 +275,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OtherPerson path: ../TinyLife/Relationship.cs @@ -322,7 +322,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Partner path: ../TinyLife/Relationship.cs @@ -359,7 +359,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FriendLevel path: ../TinyLife/Relationship.cs @@ -396,7 +396,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RomanceLevel path: ../TinyLife/Relationship.cs @@ -433,7 +433,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FriendPercentage path: ../TinyLife/Relationship.cs @@ -470,7 +470,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RomancePercentage path: ../TinyLife/Relationship.cs @@ -507,7 +507,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Relationship.cs @@ -544,7 +544,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayString path: ../TinyLife/Relationship.cs @@ -581,7 +581,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Genealogy path: ../TinyLife/Relationship.cs @@ -624,7 +624,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dating path: ../TinyLife/Relationship.cs @@ -667,7 +667,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSocialEffectiveness path: ../TinyLife/Relationship.cs @@ -706,7 +706,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRecentSocialAmount path: ../TinyLife/Relationship.cs @@ -745,7 +745,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddRecentSocial path: ../TinyLife/Relationship.cs @@ -781,7 +781,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Relationship.cs @@ -817,7 +817,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ResetToStatic path: ../TinyLife/Relationship.cs diff --git a/docs/api/TinyLife.RelationshipType.yml b/docs/api/TinyLife.RelationshipType.yml index 09a4192..4902887 100644 --- a/docs/api/TinyLife.RelationshipType.yml +++ b/docs/api/TinyLife.RelationshipType.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RelationshipType path: ../TinyLife/Relationship.cs @@ -55,7 +55,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Enemies path: ../TinyLife/Relationship.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Disliked path: ../TinyLife/Relationship.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Acquaintances path: ../TinyLife/Relationship.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Friends path: ../TinyLife/Relationship.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Relationship.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GoodFriends path: ../TinyLife/Relationship.cs diff --git a/docs/api/TinyLife.SaveHandler.yml b/docs/api/TinyLife.SaveHandler.yml index 0ed486a..b1ee340 100644 --- a/docs/api/TinyLife.SaveHandler.yml +++ b/docs/api/TinyLife.SaveHandler.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SaveHandler path: ../TinyLife/SaveHandler.cs @@ -66,7 +66,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGameSaved path: ../TinyLife/SaveHandler.cs @@ -101,7 +101,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGameLoaded path: ../TinyLife/SaveHandler.cs @@ -136,7 +136,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetGameDir path: ../TinyLife/SaveHandler.cs @@ -173,7 +173,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSavesDir path: ../TinyLife/SaveHandler.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSaveDir path: ../TinyLife/SaveHandler.cs @@ -251,7 +251,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateSerializerSettings path: ../TinyLife/SaveHandler.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/SaveHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateSerializer path: ../TinyLife/SaveHandler.cs diff --git a/docs/api/TinyLife.Set.yml b/docs/api/TinyLife.Set.yml index 54e30aa..f7ff5b5 100644 --- a/docs/api/TinyLife.Set.yml +++ b/docs/api/TinyLife.Set.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Set path: ../TinyLife/GameImpl.cs @@ -53,7 +53,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Woodworking path: ../TinyLife/GameImpl.cs @@ -87,7 +87,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Workout path: ../TinyLife/GameImpl.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/GameImpl.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChildClothes path: ../TinyLife/GameImpl.cs diff --git a/docs/api/TinyLife.Skills.FoodType.IngredientSource.yml b/docs/api/TinyLife.Skills.FoodType.IngredientSource.yml index 5cba6e6..50a1984 100644 --- a/docs/api/TinyLife.Skills.FoodType.IngredientSource.yml +++ b/docs/api/TinyLife.Skills.FoodType.IngredientSource.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IngredientSource path: ../TinyLife/Skills/FoodType.cs @@ -55,7 +55,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Other path: ../TinyLife/Skills/FoodType.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fridge path: ../TinyLife/Skills/FoodType.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ProteinShakeMaker path: ../TinyLife/Skills/FoodType.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Barbecue path: ../TinyLife/Skills/FoodType.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChildStove path: ../TinyLife/Skills/FoodType.cs diff --git a/docs/api/TinyLife.Skills.FoodType.yml b/docs/api/TinyLife.Skills.FoodType.yml index 5188010..8b9d5a6 100644 --- a/docs/api/TinyLife.Skills.FoodType.yml +++ b/docs/api/TinyLife.Skills.FoodType.yml @@ -37,7 +37,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodType path: ../TinyLife/Skills/FoodType.cs @@ -88,7 +88,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Skills/FoodType.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnFoodEaten path: ../TinyLife/Skills/FoodType.cs @@ -160,7 +160,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Skills/FoodType.cs @@ -195,7 +195,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Skills/FoodType.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredCookingLevel path: ../TinyLife/Skills/FoodType.cs @@ -265,7 +265,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/Skills/FoodType.cs @@ -300,7 +300,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FoodAmount path: ../TinyLife/Skills/FoodType.cs @@ -335,7 +335,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Source path: ../TinyLife/Skills/FoodType.cs @@ -370,7 +370,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NeedsCooking path: ../TinyLife/Skills/FoodType.cs @@ -407,7 +407,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsInGlass path: ../TinyLife/Skills/FoodType.cs @@ -444,7 +444,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnEaten path: ../TinyLife/Skills/FoodType.cs @@ -481,7 +481,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanEat path: ../TinyLife/Skills/FoodType.cs @@ -518,7 +518,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayName path: ../TinyLife/Skills/FoodType.cs @@ -555,7 +555,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Skills/FoodType.cs @@ -603,7 +603,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetContainer path: ../TinyLife/Skills/FoodType.cs @@ -648,7 +648,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetEmptyContainer path: ../TinyLife/Skills/FoodType.cs @@ -685,7 +685,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/Skills/FoodType.cs @@ -724,7 +724,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/Skills/FoodType.cs @@ -735,7 +735,7 @@ items: summary: "\nConstructs a new furniture instance based on this food type's \n" example: [] syntax: - content: public Food Construct(Map map, Quality quality, TimeSpan expirationTime, int servingSize, Person creator = null, Guid? id = null, bool triggerGoals = true) + content: public Food Construct(Map map, Quality quality, TimeSpan expirationTime, int servingSize, Person creator = null, Guid? id = default(Guid? ), bool triggerGoals = true) parameters: - id: map type: TinyLife.World.Map @@ -784,7 +784,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ConstructUnfinished path: ../TinyLife/Skills/FoodType.cs @@ -795,7 +795,7 @@ items: summary: "\nConstructs a new furniture instance based on the passed \n" example: [] syntax: - content: public FoodTypedItem ConstructUnfinished(FurnitureType container, Map map, TimeSpan expirationTime, int servingSize, Person creator = null, Guid? id = null, bool triggerGoals = false) + content: public FoodTypedItem ConstructUnfinished(FurnitureType container, Map map, TimeSpan expirationTime, int servingSize, Person creator = null, Guid? id = default(Guid? ), bool triggerGoals = false) parameters: - id: container type: TinyLife.Objects.FurnitureType @@ -844,7 +844,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Skills/FoodType.cs @@ -882,7 +882,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetActions path: ../TinyLife/Skills/FoodType.cs @@ -926,7 +926,7 @@ items: source: remote: path: TinyLife/Skills/FoodType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAllContainers path: ../TinyLife/Skills/FoodType.cs diff --git a/docs/api/TinyLife.Skills.PaintingType.yml b/docs/api/TinyLife.Skills.PaintingType.yml index b93e1cc..0534bc3 100644 --- a/docs/api/TinyLife.Skills.PaintingType.yml +++ b/docs/api/TinyLife.Skills.PaintingType.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PaintingType path: ../TinyLife/Skills/PaintingType.cs @@ -73,7 +73,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Skills/PaintingType.cs @@ -110,7 +110,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Skills/PaintingType.cs @@ -145,7 +145,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LevelRange path: ../TinyLife/Skills/PaintingType.cs @@ -180,7 +180,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Skills/PaintingType.cs @@ -215,7 +215,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BaseMarkup path: ../TinyLife/Skills/PaintingType.cs @@ -250,7 +250,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Skills/PaintingType.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/Skills/PaintingType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Skills/PaintingType.cs diff --git a/docs/api/TinyLife.Skills.Quality.yml b/docs/api/TinyLife.Skills.Quality.yml index a6f482a..db9a8bf 100644 --- a/docs/api/TinyLife.Skills.Quality.yml +++ b/docs/api/TinyLife.Skills.Quality.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Quality path: ../TinyLife/Skills/Skill.cs @@ -60,7 +60,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Terrible path: ../TinyLife/Skills/Skill.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Average path: ../TinyLife/Skills/Skill.cs @@ -128,7 +128,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Good path: ../TinyLife/Skills/Skill.cs @@ -162,7 +162,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Great path: ../TinyLife/Skills/Skill.cs @@ -196,7 +196,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Perfect path: ../TinyLife/Skills/Skill.cs @@ -230,7 +230,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Masterpiece path: ../TinyLife/Skills/Skill.cs diff --git a/docs/api/TinyLife.Skills.Skill.yml b/docs/api/TinyLife.Skills.Skill.yml index 9870d83..d0f109e 100644 --- a/docs/api/TinyLife.Skills.Skill.yml +++ b/docs/api/TinyLife.Skills.Skill.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Skill path: ../TinyLife/Skills/Skill.cs @@ -78,7 +78,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Skills/Skill.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PointsToNextLevel path: ../TinyLife/Skills/Skill.cs @@ -170,7 +170,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Level path: ../TinyLife/Skills/Skill.cs @@ -217,7 +217,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PointPercentage path: ../TinyLife/Skills/Skill.cs @@ -254,7 +254,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LevelPercentage path: ../TinyLife/Skills/Skill.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Skills/Skill.cs @@ -327,7 +327,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gain path: ../TinyLife/Skills/Skill.cs @@ -366,7 +366,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRequiredPointsToNextLevel path: ../TinyLife/Skills/Skill.cs diff --git a/docs/api/TinyLife.Skills.SkillCategory.yml b/docs/api/TinyLife.Skills.SkillCategory.yml index 68fef95..001ec6a 100644 --- a/docs/api/TinyLife.Skills.SkillCategory.yml +++ b/docs/api/TinyLife.Skills.SkillCategory.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SkillCategory path: ../TinyLife/Skills/Skill.cs @@ -65,7 +65,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: None path: ../TinyLife/Skills/Skill.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Creative path: ../TinyLife/Skills/Skill.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Logical path: ../TinyLife/Skills/Skill.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Social path: ../TinyLife/Skills/Skill.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Physical path: ../TinyLife/Skills/Skill.cs diff --git a/docs/api/TinyLife.Skills.SkillType.yml b/docs/api/TinyLife.Skills.SkillType.yml index 4fb7520..8857248 100644 --- a/docs/api/TinyLife.Skills.SkillType.yml +++ b/docs/api/TinyLife.Skills.SkillType.yml @@ -36,7 +36,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SkillType path: ../TinyLife/Skills/Skill.cs @@ -87,7 +87,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/Skills/Skill.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cooking path: ../TinyLife/Skills/Skill.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Painting path: ../TinyLife/Skills/Skill.cs @@ -194,7 +194,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Charisma path: ../TinyLife/Skills/Skill.cs @@ -229,7 +229,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Humor path: ../TinyLife/Skills/Skill.cs @@ -264,7 +264,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Programming path: ../TinyLife/Skills/Skill.cs @@ -299,7 +299,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Repair path: ../TinyLife/Skills/Skill.cs @@ -334,7 +334,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Writing path: ../TinyLife/Skills/Skill.cs @@ -369,7 +369,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gaming path: ../TinyLife/Skills/Skill.cs @@ -404,7 +404,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fitness path: ../TinyLife/Skills/Skill.cs @@ -439,7 +439,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cleaning path: ../TinyLife/Skills/Skill.cs @@ -474,7 +474,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Woodworking path: ../TinyLife/Skills/Skill.cs @@ -509,7 +509,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Skills/Skill.cs @@ -544,7 +544,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Skills/Skill.cs @@ -579,7 +579,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxLevel path: ../TinyLife/Skills/Skill.cs @@ -614,7 +614,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Categories path: ../TinyLife/Skills/Skill.cs @@ -649,7 +649,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ChildhoodMaxLevel path: ../TinyLife/Skills/Skill.cs @@ -686,7 +686,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Skills/Skill.cs @@ -731,7 +731,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRandomQuality path: ../TinyLife/Skills/Skill.cs @@ -782,7 +782,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMaxLevel path: ../TinyLife/Skills/Skill.cs @@ -821,7 +821,7 @@ items: source: remote: path: TinyLife/Skills/Skill.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Skills/Skill.cs diff --git a/docs/api/TinyLife.Skills.WoodworkingRecipe.yml b/docs/api/TinyLife.Skills.WoodworkingRecipe.yml index fbf0ae7..9f83c75 100644 --- a/docs/api/TinyLife.Skills.WoodworkingRecipe.yml +++ b/docs/api/TinyLife.Skills.WoodworkingRecipe.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WoodworkingRecipe path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -74,7 +74,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Recipes path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -111,7 +111,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Output path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -146,7 +146,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredLevel path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -181,7 +181,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PriceMultiplier path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -216,7 +216,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CraftingTime path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -251,7 +251,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -288,7 +288,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Skills/WoodworkingRecipe.cs @@ -333,7 +333,7 @@ items: source: remote: path: TinyLife/Skills/WoodworkingRecipe.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Skills/WoodworkingRecipe.cs diff --git a/docs/api/TinyLife.Tools.FurniturePlacer.GetCustomPriceDelegate.yml b/docs/api/TinyLife.Tools.FurniturePlacer.GetCustomPriceDelegate.yml index 8cff68f..8254fe2 100644 --- a/docs/api/TinyLife.Tools.FurniturePlacer.GetCustomPriceDelegate.yml +++ b/docs/api/TinyLife.Tools.FurniturePlacer.GetCustomPriceDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCustomPriceDelegate path: ../TinyLife/Tools/FurniturePlacer.cs diff --git a/docs/api/TinyLife.Tools.FurniturePlacer.yml b/docs/api/TinyLife.Tools.FurniturePlacer.yml index 15d9ff5..bd3b739 100644 --- a/docs/api/TinyLife.Tools.FurniturePlacer.yml +++ b/docs/api/TinyLife.Tools.FurniturePlacer.yml @@ -27,7 +27,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurniturePlacer path: ../TinyLife/Tools/FurniturePlacer.cs @@ -72,7 +72,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnGetCustomPrice path: ../TinyLife/Tools/FurniturePlacer.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedFurniture path: ../TinyLife/Tools/FurniturePlacer.cs @@ -144,7 +144,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedPreview path: ../TinyLife/Tools/FurniturePlacer.cs @@ -181,7 +181,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedColors path: ../TinyLife/Tools/FurniturePlacer.cs @@ -218,7 +218,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/FurniturePlacer.cs @@ -257,7 +257,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/FurniturePlacer.cs @@ -289,7 +289,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/FurniturePlacer.cs @@ -328,7 +328,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HighlightSelectedObject path: ../TinyLife/Tools/FurniturePlacer.cs @@ -363,7 +363,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/FurniturePlacer.cs @@ -398,7 +398,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectFurniture path: ../TinyLife/Tools/FurniturePlacer.cs @@ -452,7 +452,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnselectFurniture path: ../TinyLife/Tools/FurniturePlacer.cs @@ -484,7 +484,7 @@ items: source: remote: path: TinyLife/Tools/FurniturePlacer.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCustomPrice path: ../TinyLife/Tools/FurniturePlacer.cs diff --git a/docs/api/TinyLife.Tools.FurnitureTool.Tab.yml b/docs/api/TinyLife.Tools.FurnitureTool.Tab.yml index 3084851..f3518b2 100644 --- a/docs/api/TinyLife.Tools.FurnitureTool.Tab.yml +++ b/docs/api/TinyLife.Tools.FurnitureTool.Tab.yml @@ -28,7 +28,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tab path: ../TinyLife/Tools/FurnitureTool.cs @@ -73,7 +73,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: All path: ../TinyLife/Tools/FurnitureTool.cs @@ -105,7 +105,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LivingRoom path: ../TinyLife/Tools/FurnitureTool.cs @@ -137,7 +137,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Kitchen path: ../TinyLife/Tools/FurnitureTool.cs @@ -169,7 +169,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bathroom path: ../TinyLife/Tools/FurnitureTool.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DiningRoom path: ../TinyLife/Tools/FurnitureTool.cs @@ -233,7 +233,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bedroom path: ../TinyLife/Tools/FurnitureTool.cs @@ -265,7 +265,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Office path: ../TinyLife/Tools/FurnitureTool.cs @@ -297,7 +297,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: KidsRoom path: ../TinyLife/Tools/FurnitureTool.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Decoration path: ../TinyLife/Tools/FurnitureTool.cs @@ -361,7 +361,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Outside path: ../TinyLife/Tools/FurnitureTool.cs @@ -393,7 +393,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lighting path: ../TinyLife/Tools/FurnitureTool.cs @@ -425,7 +425,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Other path: ../TinyLife/Tools/FurnitureTool.cs @@ -457,7 +457,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Debug path: ../TinyLife/Tools/FurnitureTool.cs diff --git a/docs/api/TinyLife.Tools.FurnitureTool.yml b/docs/api/TinyLife.Tools.FurnitureTool.yml index 427e567..2a0e7cb 100644 --- a/docs/api/TinyLife.Tools.FurnitureTool.yml +++ b/docs/api/TinyLife.Tools.FurnitureTool.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureTool path: ../TinyLife/Tools/FurnitureTool.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/FurnitureTool.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/FurnitureTool.cs @@ -164,7 +164,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/FurnitureTool.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/FurnitureTool.cs @@ -248,7 +248,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Closed path: ../TinyLife/Tools/FurnitureTool.cs @@ -283,7 +283,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/FurnitureTool.cs @@ -321,7 +321,7 @@ items: source: remote: path: TinyLife/Tools/FurnitureTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/FurnitureTool.cs diff --git a/docs/api/TinyLife.Tools.LotTool.yml b/docs/api/TinyLife.Tools.LotTool.yml index 228dfc3..ce7d756 100644 --- a/docs/api/TinyLife.Tools.LotTool.yml +++ b/docs/api/TinyLife.Tools.LotTool.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Tools/LotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LotTool path: ../TinyLife/Tools/LotTool.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Tools/LotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/LotTool.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Tools/LotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/LotTool.cs @@ -164,7 +164,7 @@ items: source: remote: path: TinyLife/Tools/LotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/LotTool.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Tools/LotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/LotTool.cs diff --git a/docs/api/TinyLife.Tools.MoveLotTool.yml b/docs/api/TinyLife.Tools.MoveLotTool.yml index dac8a8a..d58e8e2 100644 --- a/docs/api/TinyLife.Tools.MoveLotTool.yml +++ b/docs/api/TinyLife.Tools.MoveLotTool.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MoveLotTool path: ../TinyLife/Tools/MoveLotTool.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/MoveLotTool.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opened path: ../TinyLife/Tools/MoveLotTool.cs @@ -160,7 +160,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Closed path: ../TinyLife/Tools/MoveLotTool.cs @@ -195,7 +195,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/MoveLotTool.cs @@ -234,7 +234,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/MoveLotTool.cs @@ -276,7 +276,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanSwitchGameModes path: ../TinyLife/Tools/MoveLotTool.cs @@ -314,7 +314,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/MoveLotTool.cs @@ -352,7 +352,7 @@ items: source: remote: path: TinyLife/Tools/MoveLotTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/MoveLotTool.cs diff --git a/docs/api/TinyLife.Tools.MoveTool.yml b/docs/api/TinyLife.Tools.MoveTool.yml index e5c3a9d..8c24cfc 100644 --- a/docs/api/TinyLife.Tools.MoveTool.yml +++ b/docs/api/TinyLife.Tools.MoveTool.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MoveTool path: ../TinyLife/Tools/MoveTool.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/MoveTool.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opened path: ../TinyLife/Tools/MoveTool.cs @@ -161,7 +161,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Closed path: ../TinyLife/Tools/MoveTool.cs @@ -196,7 +196,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/MoveTool.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/MoveTool.cs @@ -277,7 +277,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/MoveTool.cs @@ -319,7 +319,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/MoveTool.cs @@ -357,7 +357,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanSwitchGameModes path: ../TinyLife/Tools/MoveTool.cs @@ -395,7 +395,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/MoveTool.cs @@ -433,7 +433,7 @@ items: source: remote: path: TinyLife/Tools/MoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reload path: ../TinyLife/Tools/MoveTool.cs diff --git a/docs/api/TinyLife.Tools.OpeningTool.yml b/docs/api/TinyLife.Tools.OpeningTool.yml index a46097c..99f3da5 100644 --- a/docs/api/TinyLife.Tools.OpeningTool.yml +++ b/docs/api/TinyLife.Tools.OpeningTool.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpeningTool path: ../TinyLife/Tools/OpeningTool.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/OpeningTool.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/OpeningTool.cs @@ -164,7 +164,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/OpeningTool.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/OpeningTool.cs @@ -248,7 +248,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/OpeningTool.cs @@ -286,7 +286,7 @@ items: source: remote: path: TinyLife/Tools/OpeningTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/OpeningTool.cs diff --git a/docs/api/TinyLife.Tools.PlayModeTool.StatType.yml b/docs/api/TinyLife.Tools.PlayModeTool.StatType.yml index d9ac509..fe70be1 100644 --- a/docs/api/TinyLife.Tools.PlayModeTool.StatType.yml +++ b/docs/api/TinyLife.Tools.PlayModeTool.StatType.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StatType path: ../TinyLife/Tools/PlayModeTool.cs @@ -57,7 +57,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Needs path: ../TinyLife/Tools/PlayModeTool.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Emotions path: ../TinyLife/Tools/PlayModeTool.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Skills path: ../TinyLife/Tools/PlayModeTool.cs @@ -153,7 +153,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Relationships path: ../TinyLife/Tools/PlayModeTool.cs @@ -185,7 +185,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Job path: ../TinyLife/Tools/PlayModeTool.cs @@ -217,7 +217,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LifeGoal path: ../TinyLife/Tools/PlayModeTool.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: About path: ../TinyLife/Tools/PlayModeTool.cs diff --git a/docs/api/TinyLife.Tools.PlayModeTool.yml b/docs/api/TinyLife.Tools.PlayModeTool.yml index 83ac292..390320a 100644 --- a/docs/api/TinyLife.Tools.PlayModeTool.yml +++ b/docs/api/TinyLife.Tools.PlayModeTool.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayModeTool path: ../TinyLife/Tools/PlayModeTool.cs @@ -97,7 +97,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedPerson path: ../TinyLife/Tools/PlayModeTool.cs @@ -134,7 +134,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedStat path: ../TinyLife/Tools/PlayModeTool.cs @@ -171,7 +171,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/PlayModeTool.cs @@ -202,7 +202,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/PlayModeTool.cs @@ -241,7 +241,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opened path: ../TinyLife/Tools/PlayModeTool.cs @@ -276,7 +276,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Closed path: ../TinyLife/Tools/PlayModeTool.cs @@ -311,7 +311,7 @@ items: source: remote: path: TinyLife/Tools/PlayModeTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reload path: ../TinyLife/Tools/PlayModeTool.cs diff --git a/docs/api/TinyLife.Tools.RemoveTool.yml b/docs/api/TinyLife.Tools.RemoveTool.yml index 539a966..ca784ee 100644 --- a/docs/api/TinyLife.Tools.RemoveTool.yml +++ b/docs/api/TinyLife.Tools.RemoveTool.yml @@ -25,7 +25,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveTool path: ../TinyLife/Tools/RemoveTool.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/RemoveTool.cs @@ -130,7 +130,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/RemoveTool.cs @@ -169,7 +169,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/RemoveTool.cs @@ -211,7 +211,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/RemoveTool.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/RemoveTool.cs @@ -287,7 +287,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveRoof path: ../TinyLife/Tools/RemoveTool.cs @@ -298,7 +298,7 @@ items: summary: "\nRemoves the given roof from the world, additionally removing any furniture below it and returning the money for the objects\n" example: [] syntax: - content: public static void RemoveRoof(Roof roof, Rectangle? newRoof = null) + content: public static void RemoveRoof(Roof roof, Rectangle? newRoof = default(Rectangle? )) parameters: - id: roof type: TinyLife.World.Roof @@ -330,7 +330,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveWall path: ../TinyLife/Tools/RemoveTool.cs @@ -368,7 +368,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveFurniture path: ../TinyLife/Tools/RemoveTool.cs @@ -409,7 +409,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StoreOrRemoveFurniture path: ../TinyLife/Tools/RemoveTool.cs @@ -450,7 +450,7 @@ items: source: remote: path: TinyLife/Tools/RemoveTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayDestroySound path: ../TinyLife/Tools/RemoveTool.cs diff --git a/docs/api/TinyLife.Tools.RoofTool.yml b/docs/api/TinyLife.Tools.RoofTool.yml index e36c601..4ce7586 100644 --- a/docs/api/TinyLife.Tools.RoofTool.yml +++ b/docs/api/TinyLife.Tools.RoofTool.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofTool path: ../TinyLife/Tools/RoofTool.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/RoofTool.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/RoofTool.cs @@ -165,7 +165,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/RoofTool.cs @@ -207,7 +207,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/RoofTool.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ForceWallsUp path: ../TinyLife/Tools/RoofTool.cs @@ -287,7 +287,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/RoofTool.cs @@ -325,7 +325,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/RoofTool.cs @@ -363,7 +363,7 @@ items: source: remote: path: TinyLife/Tools/RoofTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseOffsetForCameraRotation path: ../TinyLife/Tools/RoofTool.cs diff --git a/docs/api/TinyLife.Tools.TileTool.yml b/docs/api/TinyLife.Tools.TileTool.yml index 7a99953..f8b8e36 100644 --- a/docs/api/TinyLife.Tools.TileTool.yml +++ b/docs/api/TinyLife.Tools.TileTool.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TileTool path: ../TinyLife/Tools/TileTool.cs @@ -95,7 +95,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/TileTool.cs @@ -126,7 +126,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/TileTool.cs @@ -165,7 +165,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/TileTool.cs @@ -207,7 +207,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/TileTool.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/TileTool.cs @@ -287,7 +287,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/TileTool.cs @@ -325,7 +325,7 @@ items: source: remote: path: TinyLife/Tools/TileTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveNaturalFurniture path: ../TinyLife/Tools/TileTool.cs diff --git a/docs/api/TinyLife.Tools.Tool.yml b/docs/api/TinyLife.Tools.Tool.yml index ff3bf2c..efcc0f0 100644 --- a/docs/api/TinyLife.Tools.Tool.yml +++ b/docs/api/TinyLife.Tools.Tool.yml @@ -46,7 +46,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tool path: ../TinyLife/Tools/Tool.cs @@ -103,7 +103,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveTool path: ../TinyLife/Tools/Tool.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MoveTool path: ../TinyLife/Tools/Tool.cs @@ -177,7 +177,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayModeTool path: ../TinyLife/Tools/Tool.cs @@ -214,7 +214,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuildTools path: ../TinyLife/Tools/Tool.cs @@ -251,7 +251,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedObject path: ../TinyLife/Tools/Tool.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedWall path: ../TinyLife/Tools/Tool.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnOpened path: ../TinyLife/Tools/Tool.cs @@ -364,7 +364,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnClosed path: ../TinyLife/Tools/Tool.cs @@ -399,7 +399,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnUpdate path: ../TinyLife/Tools/Tool.cs @@ -434,7 +434,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnDraw path: ../TinyLife/Tools/Tool.cs @@ -469,7 +469,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnInitBuildModeUi path: ../TinyLife/Tools/Tool.cs @@ -504,7 +504,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Input path: ../TinyLife/Tools/Tool.cs @@ -542,7 +542,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/Tools/Tool.cs @@ -581,7 +581,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Money path: ../TinyLife/Tools/Tool.cs @@ -620,7 +620,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/Tools/Tool.cs @@ -655,7 +655,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayAsTab path: ../TinyLife/Tools/Tool.cs @@ -690,7 +690,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MousePos path: ../TinyLife/Tools/Tool.cs @@ -723,7 +723,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/Tool.cs @@ -762,7 +762,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/Tool.cs @@ -803,7 +803,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opened path: ../TinyLife/Tools/Tool.cs @@ -837,7 +837,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Closed path: ../TinyLife/Tools/Tool.cs @@ -871,7 +871,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/Tool.cs @@ -909,7 +909,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/Tool.cs @@ -950,7 +950,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/Tool.cs @@ -987,7 +987,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ForceWallsUp path: ../TinyLife/Tools/Tool.cs @@ -1024,7 +1024,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanSwitchGameModes path: ../TinyLife/Tools/Tool.cs @@ -1061,7 +1061,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/Tool.cs @@ -1098,7 +1098,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsOnLot path: ../TinyLife/Tools/Tool.cs @@ -1139,7 +1139,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorSelection path: ../TinyLife/Tools/Tool.cs @@ -1189,7 +1189,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorSelection path: ../TinyLife/Tools/Tool.cs @@ -1239,7 +1239,7 @@ items: source: remote: path: TinyLife/Tools/Tool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuildModeButton path: ../TinyLife/Tools/Tool.cs @@ -1250,7 +1250,7 @@ items: summary: "\nCreates a new in the style of each build mode content button, like the ones that display the furniture that can be bought.\n" example: [] syntax: - content: public static Button BuildModeButton(string name, Element.GenericCallback onPressed, Element.DrawCallback onDrawn, float price, TextureRegion icon, IEnumerable description = null, float? customPrice = null) + content: public static Button BuildModeButton(string name, Element.GenericCallback onPressed, Element.DrawCallback onDrawn, float price, TextureRegion icon, IEnumerable description = null, float? customPrice = default(float? )) parameters: - id: name type: System.String diff --git a/docs/api/TinyLife.Tools.WallTool.yml b/docs/api/TinyLife.Tools.WallTool.yml index fe63496..82d382b 100644 --- a/docs/api/TinyLife.Tools.WallTool.yml +++ b/docs/api/TinyLife.Tools.WallTool.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Tools/WallTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallTool path: ../TinyLife/Tools/WallTool.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Tools/WallTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/WallTool.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Tools/WallTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/WallTool.cs @@ -164,7 +164,7 @@ items: source: remote: path: TinyLife/Tools/WallTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/WallTool.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Tools/WallTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/WallTool.cs @@ -244,7 +244,7 @@ items: source: remote: path: TinyLife/Tools/WallTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/WallTool.cs diff --git a/docs/api/TinyLife.Tools.WallpaperTool.yml b/docs/api/TinyLife.Tools.WallpaperTool.yml index 895c740..279d225 100644 --- a/docs/api/TinyLife.Tools.WallpaperTool.yml +++ b/docs/api/TinyLife.Tools.WallpaperTool.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallpaperTool path: ../TinyLife/Tools/WallpaperTool.cs @@ -94,7 +94,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Tools/WallpaperTool.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Tools/WallpaperTool.cs @@ -164,7 +164,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Tools/WallpaperTool.cs @@ -206,7 +206,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InitBuildModeUi path: ../TinyLife/Tools/WallpaperTool.cs @@ -248,7 +248,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetMouseCursor path: ../TinyLife/Tools/WallpaperTool.cs @@ -286,7 +286,7 @@ items: source: remote: path: TinyLife/Tools/WallpaperTool.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldHighlightSelectedObject path: ../TinyLife/Tools/WallpaperTool.cs diff --git a/docs/api/TinyLife.Uis.CharacterCreator.yml b/docs/api/TinyLife.Uis.CharacterCreator.yml index 9649b3c..93c6fa6 100644 --- a/docs/api/TinyLife.Uis.CharacterCreator.yml +++ b/docs/api/TinyLife.Uis.CharacterCreator.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CharacterCreator path: ../TinyLife/Uis/CharacterCreator.cs @@ -67,7 +67,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxHouseholdSize path: ../TinyLife/Uis/CharacterCreator.cs @@ -102,7 +102,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxOutfitAmount path: ../TinyLife/Uis/CharacterCreator.cs @@ -137,7 +137,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Active path: ../TinyLife/Uis/CharacterCreator.cs @@ -176,7 +176,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanSwitchPeople path: ../TinyLife/Uis/CharacterCreator.cs @@ -211,7 +211,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanCloseOrExport path: ../TinyLife/Uis/CharacterCreator.cs @@ -246,7 +246,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreatePerson path: ../TinyLife/Uis/CharacterCreator.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/Uis/CharacterCreator.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Open path: ../TinyLife/Uis/CharacterCreator.cs diff --git a/docs/api/TinyLife.Uis.CoveringGroup.yml b/docs/api/TinyLife.Uis.CoveringGroup.yml index 9ba2fd4..d72a224 100644 --- a/docs/api/TinyLife.Uis.CoveringGroup.yml +++ b/docs/api/TinyLife.Uis.CoveringGroup.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Uis/CoveringGroup.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CoveringGroup path: ../TinyLife/Uis/CoveringGroup.cs @@ -177,7 +177,7 @@ items: source: remote: path: TinyLife/Uis/CoveringGroup.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Uis/CoveringGroup.cs @@ -225,7 +225,7 @@ items: source: remote: path: TinyLife/Uis/CoveringGroup.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Uis/CoveringGroup.cs @@ -276,7 +276,7 @@ items: source: remote: path: TinyLife/Uis/CoveringGroup.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TryClose path: ../TinyLife/Uis/CoveringGroup.cs @@ -312,7 +312,7 @@ items: source: remote: path: TinyLife/Uis/CoveringGroup.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Close path: ../TinyLife/Uis/CoveringGroup.cs diff --git a/docs/api/TinyLife.Uis.Cursor.yml b/docs/api/TinyLife.Uis.Cursor.yml index a7b6230..cab17d9 100644 --- a/docs/api/TinyLife.Uis.Cursor.yml +++ b/docs/api/TinyLife.Uis.Cursor.yml @@ -16,7 +16,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Cursor path: ../TinyLife/Uis/Cursor.cs @@ -60,7 +60,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetCursor path: ../TinyLife/Uis/Cursor.cs diff --git a/docs/api/TinyLife.Uis.CursorType.yml b/docs/api/TinyLife.Uis.CursorType.yml index a0a87fe..db5e10e 100644 --- a/docs/api/TinyLife.Uis.CursorType.yml +++ b/docs/api/TinyLife.Uis.CursorType.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CursorType path: ../TinyLife/Uis/Cursor.cs @@ -56,7 +56,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: None path: ../TinyLife/Uis/Cursor.cs @@ -90,7 +90,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Default path: ../TinyLife/Uis/Cursor.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wall path: ../TinyLife/Uis/Cursor.cs @@ -158,7 +158,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hammer path: ../TinyLife/Uis/Cursor.cs @@ -192,7 +192,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Range path: ../TinyLife/Uis/Cursor.cs @@ -226,7 +226,7 @@ items: source: remote: path: TinyLife/Uis/Cursor.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Disallowed path: ../TinyLife/Uis/Cursor.cs diff --git a/docs/api/TinyLife.Uis.InGameHint.yml b/docs/api/TinyLife.Uis.InGameHint.yml index b62f8f8..115da30 100644 --- a/docs/api/TinyLife.Uis.InGameHint.yml +++ b/docs/api/TinyLife.Uis.InGameHint.yml @@ -30,7 +30,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InGameHint path: ../TinyLife/Uis/InGameHint.cs @@ -81,7 +81,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hints path: ../TinyLife/Uis/InGameHint.cs @@ -118,7 +118,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Introduction path: ../TinyLife/Uis/InGameHint.cs @@ -153,7 +153,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonalityTypes path: ../TinyLife/Uis/InGameHint.cs @@ -188,7 +188,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ClothesIntentions path: ../TinyLife/Uis/InGameHint.cs @@ -223,7 +223,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Interactions path: ../TinyLife/Uis/InGameHint.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Outfits path: ../TinyLife/Uis/InGameHint.cs @@ -293,7 +293,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InteractionPages path: ../TinyLife/Uis/InGameHint.cs @@ -328,7 +328,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OutOfTownActions path: ../TinyLife/Uis/InGameHint.cs @@ -363,7 +363,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Uis/InGameHint.cs @@ -398,7 +398,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/Uis/InGameHint.cs @@ -433,7 +433,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Condition path: ../TinyLife/Uis/InGameHint.cs @@ -468,7 +468,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasBeenDisplayed path: ../TinyLife/Uis/InGameHint.cs @@ -505,7 +505,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Uis/InGameHint.cs @@ -550,7 +550,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Display path: ../TinyLife/Uis/InGameHint.cs @@ -582,7 +582,7 @@ items: source: remote: path: TinyLife/Uis/InGameHint.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/Uis/InGameHint.cs diff --git a/docs/api/TinyLife.Uis.InGameUi.yml b/docs/api/TinyLife.Uis.InGameUi.yml index b15bd28..871171a 100644 --- a/docs/api/TinyLife.Uis.InGameUi.yml +++ b/docs/api/TinyLife.Uis.InGameUi.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Uis/InGameUi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: InGameUi path: ../TinyLife/Uis/InGameUi.cs @@ -63,7 +63,7 @@ items: source: remote: path: TinyLife/Uis/InGameUi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnInitialized path: ../TinyLife/Uis/InGameUi.cs @@ -98,7 +98,7 @@ items: source: remote: path: TinyLife/Uis/InGameUi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Main path: ../TinyLife/Uis/InGameUi.cs @@ -137,7 +137,7 @@ items: source: remote: path: TinyLife/Uis/InGameUi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuildContent path: ../TinyLife/Uis/InGameUi.cs @@ -176,7 +176,7 @@ items: source: remote: path: TinyLife/Uis/InGameUi.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BuildZoom path: ../TinyLife/Uis/InGameUi.cs diff --git a/docs/api/TinyLife.Uis.Menus.TransitionType.yml b/docs/api/TinyLife.Uis.Menus.TransitionType.yml index 83e652b..bedd3e8 100644 --- a/docs/api/TinyLife.Uis.Menus.TransitionType.yml +++ b/docs/api/TinyLife.Uis.Menus.TransitionType.yml @@ -17,7 +17,7 @@ items: source: remote: path: TinyLife/Uis/Menus.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TransitionType path: ../TinyLife/Uis/Menus.cs @@ -52,7 +52,7 @@ items: source: remote: path: TinyLife/Uis/Menus.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Swipe path: ../TinyLife/Uis/Menus.cs @@ -86,7 +86,7 @@ items: source: remote: path: TinyLife/Uis/Menus.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Fade path: ../TinyLife/Uis/Menus.cs diff --git a/docs/api/TinyLife.Uis.Menus.yml b/docs/api/TinyLife.Uis.Menus.yml index d42249b..58097da 100644 --- a/docs/api/TinyLife.Uis.Menus.yml +++ b/docs/api/TinyLife.Uis.Menus.yml @@ -16,7 +16,7 @@ items: source: remote: path: TinyLife/Uis/Menus.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Menus path: ../TinyLife/Uis/Menus.cs @@ -60,7 +60,7 @@ items: source: remote: path: TinyLife/Uis/Menus.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Transition path: ../TinyLife/Uis/Menus.cs @@ -71,7 +71,7 @@ items: summary: "\nDisplays a screen transition that includes a fade out, an inbetween action, followed by a fade back in and an after action.\n" example: [] syntax: - content: public static void Transition(Action inbetween = null, Action after = null, Menus.TransitionType outType = Menus.TransitionType.Swipe, Menus.TransitionType inType = Menus.TransitionType.Swipe, float outSpeed = 0.05F, float inSpeed = 0.05F, float waitInbetween = 0.15F, Color? color = null) + content: public static void Transition(Action inbetween = null, Action after = null, Menus.TransitionType outType = Menus.TransitionType.Swipe, Menus.TransitionType inType = Menus.TransitionType.Swipe, float outSpeed = 0.05F, float inSpeed = 0.05F, float waitInbetween = 0.15F, Color? color = default(Color? )) parameters: - id: inbetween type: System.Action diff --git a/docs/api/TinyLife.Uis.NotifType.yml b/docs/api/TinyLife.Uis.NotifType.yml index e45c70e..08487b5 100644 --- a/docs/api/TinyLife.Uis.NotifType.yml +++ b/docs/api/TinyLife.Uis.NotifType.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: NotifType path: ../TinyLife/Uis/Notifications.cs @@ -55,7 +55,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Info path: ../TinyLife/Uis/Notifications.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Warning path: ../TinyLife/Uis/Notifications.cs @@ -123,7 +123,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VeryImportant path: ../TinyLife/Uis/Notifications.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VeryPositive path: ../TinyLife/Uis/Notifications.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Debug path: ../TinyLife/Uis/Notifications.cs diff --git a/docs/api/TinyLife.Uis.Notifications.yml b/docs/api/TinyLife.Uis.Notifications.yml index 10446a9..4ecd8c8 100644 --- a/docs/api/TinyLife.Uis.Notifications.yml +++ b/docs/api/TinyLife.Uis.Notifications.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Notifications path: ../TinyLife/Uis/Notifications.cs @@ -62,7 +62,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MaxHistoryLength path: ../TinyLife/Uis/Notifications.cs @@ -97,7 +97,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Add path: ../TinyLife/Uis/Notifications.cs @@ -141,7 +141,7 @@ items: source: remote: path: TinyLife/Uis/Notifications.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Add path: ../TinyLife/Uis/Notifications.cs diff --git a/docs/api/TinyLife.Utilities.ColorScheme.yml b/docs/api/TinyLife.Utilities.ColorScheme.yml index 1e2fce3..ba9c168 100644 --- a/docs/api/TinyLife.Utilities.ColorScheme.yml +++ b/docs/api/TinyLife.Utilities.ColorScheme.yml @@ -47,7 +47,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorScheme path: ../TinyLife/Utilities/ColorScheme.cs @@ -98,7 +98,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Transparent path: ../TinyLife/Utilities/ColorScheme.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: White path: ../TinyLife/Utilities/ColorScheme.cs @@ -168,7 +168,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SimpleWood path: ../TinyLife/Utilities/ColorScheme.cs @@ -203,7 +203,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Ceramics path: ../TinyLife/Utilities/ColorScheme.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pastel path: ../TinyLife/Utilities/ColorScheme.cs @@ -273,7 +273,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Plants path: ../TinyLife/Utilities/ColorScheme.cs @@ -308,7 +308,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Modern path: ../TinyLife/Utilities/ColorScheme.cs @@ -343,7 +343,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Grays path: ../TinyLife/Utilities/ColorScheme.cs @@ -378,7 +378,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bricks path: ../TinyLife/Utilities/ColorScheme.cs @@ -413,7 +413,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WarmDark path: ../TinyLife/Utilities/ColorScheme.cs @@ -448,7 +448,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Skin path: ../TinyLife/Utilities/ColorScheme.cs @@ -483,7 +483,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Hair path: ../TinyLife/Utilities/ColorScheme.cs @@ -518,7 +518,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Eyes path: ../TinyLife/Utilities/ColorScheme.cs @@ -553,7 +553,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Flannel path: ../TinyLife/Utilities/ColorScheme.cs @@ -588,7 +588,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Dirt path: ../TinyLife/Utilities/ColorScheme.cs @@ -623,7 +623,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Khakis path: ../TinyLife/Utilities/ColorScheme.cs @@ -658,7 +658,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rugs path: ../TinyLife/Utilities/ColorScheme.cs @@ -693,7 +693,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Thatch path: ../TinyLife/Utilities/ColorScheme.cs @@ -728,7 +728,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LampShades path: ../TinyLife/Utilities/ColorScheme.cs @@ -763,7 +763,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DirtPaths path: ../TinyLife/Utilities/ColorScheme.cs @@ -798,7 +798,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernShort path: ../TinyLife/Utilities/ColorScheme.cs @@ -833,7 +833,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CardboardBoxes path: ../TinyLife/Utilities/ColorScheme.cs @@ -868,7 +868,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Jewelery path: ../TinyLife/Utilities/ColorScheme.cs @@ -903,7 +903,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: this[] path: ../TinyLife/Utilities/ColorScheme.cs @@ -946,7 +946,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Count path: ../TinyLife/Utilities/ColorScheme.cs @@ -985,7 +985,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetEnumerator path: ../TinyLife/Utilities/ColorScheme.cs @@ -1021,7 +1021,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: System.Collections.IEnumerable.GetEnumerator path: ../TinyLife/Utilities/ColorScheme.cs @@ -1053,7 +1053,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Create path: ../TinyLife/Utilities/ColorScheme.cs @@ -1097,7 +1097,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Load path: ../TinyLife/Utilities/ColorScheme.cs @@ -1138,7 +1138,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Combine path: ../TinyLife/Utilities/ColorScheme.cs @@ -1182,7 +1182,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_Implicit path: ../TinyLife/Utilities/ColorScheme.cs @@ -1226,7 +1226,7 @@ items: source: remote: path: TinyLife/Utilities/ColorScheme.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: op_Addition path: ../TinyLife/Utilities/ColorScheme.cs diff --git a/docs/api/TinyLife.Utilities.Extensions.yml b/docs/api/TinyLife.Utilities.Extensions.yml index d87f85f..647d546 100644 --- a/docs/api/TinyLife.Utilities.Extensions.yml +++ b/docs/api/TinyLife.Utilities.Extensions.yml @@ -44,7 +44,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Extensions path: ../TinyLife/Utilities/Extensions.cs @@ -89,7 +89,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToScreenPos path: ../TinyLife/Utilities/Extensions.cs @@ -143,7 +143,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToWorldPos path: ../TinyLife/Utilities/Extensions.cs @@ -191,7 +191,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToVisualY path: ../TinyLife/Utilities/Extensions.cs @@ -236,7 +236,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToWallSide path: ../TinyLife/Utilities/Extensions.cs @@ -281,7 +281,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsVertical path: ../TinyLife/Utilities/Extensions.cs @@ -326,7 +326,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsHorizontal path: ../TinyLife/Utilities/Extensions.cs @@ -371,7 +371,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: JsonCopy path: ../TinyLife/Utilities/Extensions.cs @@ -422,7 +422,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPriceModifier path: ../TinyLife/Utilities/Extensions.cs @@ -467,7 +467,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDecorativeRating path: ../TinyLife/Utilities/Extensions.cs @@ -512,7 +512,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetChanceModifier path: ../TinyLife/Utilities/Extensions.cs @@ -557,7 +557,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToLocalizedString path: ../TinyLife/Utilities/Extensions.cs @@ -602,7 +602,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToSellingPriceString path: ../TinyLife/Utilities/Extensions.cs @@ -647,7 +647,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BothValid path: ../TinyLife/Utilities/Extensions.cs @@ -698,7 +698,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BothCompleted path: ../TinyLife/Utilities/Extensions.cs @@ -749,7 +749,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OneCompleted path: ../TinyLife/Utilities/Extensions.cs @@ -800,7 +800,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetOpposite path: ../TinyLife/Utilities/Extensions.cs @@ -845,7 +845,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsAgeAppropriate path: ../TinyLife/Utilities/Extensions.cs @@ -893,7 +893,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToWorking path: ../TinyLife/Utilities/Extensions.cs @@ -938,7 +938,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddHoverAnimation path: ../TinyLife/Utilities/Extensions.cs @@ -983,7 +983,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ToSimpleLocalizedString path: ../TinyLife/Utilities/Extensions.cs @@ -1028,7 +1028,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDefaultTab path: ../TinyLife/Utilities/Extensions.cs @@ -1073,7 +1073,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDefaultDirtyOverlayTextureName path: ../TinyLife/Utilities/Extensions.cs @@ -1118,7 +1118,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsLockedFor path: ../TinyLife/Utilities/Extensions.cs @@ -1169,7 +1169,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawIsoArea path: ../TinyLife/Utilities/Extensions.cs @@ -1223,7 +1223,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsPartOfPerson path: ../TinyLife/Utilities/Extensions.cs @@ -1268,7 +1268,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanTakeOff path: ../TinyLife/Utilities/Extensions.cs @@ -1313,7 +1313,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDepth path: ../TinyLife/Utilities/Extensions.cs @@ -1358,7 +1358,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetPauseGame path: ../TinyLife/Utilities/Extensions.cs @@ -1406,7 +1406,7 @@ items: source: remote: path: TinyLife/Utilities/Extensions.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRequiredMatchPercentage path: ../TinyLife/Utilities/Extensions.cs diff --git a/docs/api/TinyLife.Utilities.TextureHandler.yml b/docs/api/TinyLife.Utilities.TextureHandler.yml index 172de8a..f7dfa32 100644 --- a/docs/api/TinyLife.Utilities.TextureHandler.yml +++ b/docs/api/TinyLife.Utilities.TextureHandler.yml @@ -35,7 +35,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TextureHandler path: ../TinyLife/Utilities/TextureHandler.cs @@ -79,7 +79,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TexturePacker path: ../TinyLife/Utilities/TextureHandler.cs @@ -114,7 +114,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureTextures path: ../TinyLife/Utilities/TextureHandler.cs @@ -149,7 +149,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PersonTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -186,7 +186,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HairsTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -223,7 +223,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TopsTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -260,7 +260,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PantsTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -297,7 +297,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShoesTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -334,7 +334,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AccessoriesTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -371,7 +371,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HeadAccessoriesTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -408,7 +408,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FaceAccessoriesTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -445,7 +445,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ArmAccessoriesTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -482,7 +482,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UiTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -519,7 +519,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CursorTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -556,7 +556,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpeningTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -593,7 +593,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -630,7 +630,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TileTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -667,7 +667,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallpaperTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -704,7 +704,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: VehicleTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -741,7 +741,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LightTexture path: ../TinyLife/Utilities/TextureHandler.cs @@ -778,7 +778,7 @@ items: source: remote: path: TinyLife/Utilities/TextureHandler.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ApplyWallpaperMasks path: ../TinyLife/Utilities/TextureHandler.cs diff --git a/docs/api/TinyLife.WallDisplay.yml b/docs/api/TinyLife.WallDisplay.yml index 3e2d8cd..f1a4e36 100644 --- a/docs/api/TinyLife.WallDisplay.yml +++ b/docs/api/TinyLife.WallDisplay.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallDisplay path: ../TinyLife/Options.cs @@ -54,7 +54,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Roofs path: ../TinyLife/Options.cs @@ -88,7 +88,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Up path: ../TinyLife/Options.cs @@ -122,7 +122,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Auto path: ../TinyLife/Options.cs @@ -156,7 +156,7 @@ items: source: remote: path: TinyLife/Options.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Down path: ../TinyLife/Options.cs diff --git a/docs/api/TinyLife.World.BillsMail.yml b/docs/api/TinyLife.World.BillsMail.yml index 5385534..d01997e 100644 --- a/docs/api/TinyLife.World.BillsMail.yml +++ b/docs/api/TinyLife.World.BillsMail.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BillsMail path: ../TinyLife/World/Mail.cs @@ -79,7 +79,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Amount path: ../TinyLife/World/Mail.cs @@ -124,7 +124,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Mail.cs @@ -166,7 +166,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnReceived path: ../TinyLife/World/Mail.cs diff --git a/docs/api/TinyLife.World.Door.yml b/docs/api/TinyLife.World.Door.yml index 99aa745..a8ce5eb 100644 --- a/docs/api/TinyLife.World.Door.yml +++ b/docs/api/TinyLife.World.Door.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Door path: ../TinyLife/World/Opening.cs @@ -75,7 +75,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Opening.cs @@ -114,7 +114,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanWalkThrough path: ../TinyLife/World/Opening.cs @@ -157,7 +157,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanPlaceOn path: ../TinyLife/World/Opening.cs diff --git a/docs/api/TinyLife.World.DrawDelegate.yml b/docs/api/TinyLife.World.DrawDelegate.yml index d3793c3..248f171 100644 --- a/docs/api/TinyLife.World.DrawDelegate.yml +++ b/docs/api/TinyLife.World.DrawDelegate.yml @@ -15,11 +15,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawDelegate path: ../TinyLife/World/Map.cs - startLine: 2003 + startLine: 2008 assemblies: - Tiny Life namespace: TinyLife.World diff --git a/docs/api/TinyLife.World.ExportedHousehold.yml b/docs/api/TinyLife.World.ExportedHousehold.yml index 10b05a7..d47ac90 100644 --- a/docs/api/TinyLife.World.ExportedHousehold.yml +++ b/docs/api/TinyLife.World.ExportedHousehold.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExportedHousehold path: ../TinyLife/World/Household.cs @@ -66,7 +66,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExportedVersion path: ../TinyLife/World/Household.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Members path: ../TinyLife/World/Household.cs @@ -132,7 +132,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Money path: ../TinyLife/World/Household.cs @@ -165,7 +165,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureStorage path: ../TinyLife/World/Household.cs @@ -198,7 +198,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ClothesStorage path: ../TinyLife/World/Household.cs @@ -231,7 +231,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Description path: ../TinyLife/World/Household.cs diff --git a/docs/api/TinyLife.World.ExportedLot.yml b/docs/api/TinyLife.World.ExportedLot.yml index 203e5c2..7499951 100644 --- a/docs/api/TinyLife.World.ExportedLot.yml +++ b/docs/api/TinyLife.World.ExportedLot.yml @@ -24,7 +24,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExportedLot path: ../TinyLife/World/Lot.cs @@ -73,7 +73,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ExportedVersion path: ../TinyLife/World/Lot.cs @@ -106,7 +106,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Area path: ../TinyLife/World/Lot.cs @@ -139,7 +139,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/World/Lot.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Furniture path: ../TinyLife/World/Lot.cs @@ -205,7 +205,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Walls path: ../TinyLife/World/Lot.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Roofs path: ../TinyLife/World/Lot.cs @@ -271,7 +271,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tiles path: ../TinyLife/World/Lot.cs @@ -304,7 +304,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Lot.cs @@ -341,7 +341,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCoveredArea path: ../TinyLife/World/Lot.cs diff --git a/docs/api/TinyLife.World.FurnitureMail.yml b/docs/api/TinyLife.World.FurnitureMail.yml index efcd95b..72568f5 100644 --- a/docs/api/TinyLife.World.FurnitureMail.yml +++ b/docs/api/TinyLife.World.FurnitureMail.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureMail path: ../TinyLife/World/Mail.cs @@ -80,7 +80,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Item path: ../TinyLife/World/Mail.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Mail.cs @@ -161,7 +161,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCollected path: ../TinyLife/World/Mail.cs @@ -199,7 +199,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Mail.cs diff --git a/docs/api/TinyLife.World.GrassyAutoTile.yml b/docs/api/TinyLife.World.GrassyAutoTile.yml index ca781a0..399a305 100644 --- a/docs/api/TinyLife.World.GrassyAutoTile.yml +++ b/docs/api/TinyLife.World.GrassyAutoTile.yml @@ -5,7 +5,7 @@ items: id: GrassyAutoTile parent: TinyLife.World children: - - TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) + - TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) - TinyLife.World.GrassyAutoTile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) - TinyLife.World.GrassyAutoTile.OnNeighborChanged(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) langs: @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/World/GrassyAutoTile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GrassyAutoTile path: ../TinyLife/World/GrassyAutoTile.cs @@ -57,7 +57,9 @@ items: - TinyLife.World.Tile.TextureRegions - TinyLife.World.Tile.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Single) - TinyLife.World.Tile.GetPrice + - TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) - TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) + - TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -73,21 +75,21 @@ items: modifiers.vb: - Public - Class -- uid: TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) - commentId: M:TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) - id: '#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])' +- uid: TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) + commentId: M:TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) + id: '#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])' parent: TinyLife.World.GrassyAutoTile langs: - csharp - vb - name: GrassyAutoTile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) - nameWithType: GrassyAutoTile.GrassyAutoTile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) - fullName: TinyLife.World.GrassyAutoTile.GrassyAutoTile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary, TinyLife.Utilities.ColorScheme[], System.Int32[], System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32[]) + name: GrassyAutoTile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) + nameWithType: GrassyAutoTile.GrassyAutoTile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) + fullName: TinyLife.World.GrassyAutoTile.GrassyAutoTile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary, TinyLife.Utilities.ColorScheme[], System.Int32[], System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32[]) type: Constructor source: remote: path: TinyLife/World/GrassyAutoTile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/GrassyAutoTile.cs @@ -98,7 +100,7 @@ items: summary: "\nCreates a new tile with the given settings.\nTo create an instance of a custom tile class, use .\n" example: [] syntax: - content: protected GrassyAutoTile(string baseName, string name, int price, Dictionary textureRegions, ColorScheme[] colorSchemes, int[] colors, bool canBuy, float pathCostModifier, bool natural, TextureRegion icon, int[] defaultColors) + content: protected GrassyAutoTile(string baseName, string name, int price, Dictionary textureRegions, ColorScheme[] colorSchemes, int[] colors, bool canBuy, float pathCostModifier, bool natural, TextureRegion icon, int[] defaultColors) parameters: - id: baseName type: System.String @@ -107,7 +109,7 @@ items: - id: price type: System.Int32 - id: textureRegions - type: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} + type: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} - id: colorSchemes type: TinyLife.Utilities.ColorScheme[] - id: colors @@ -122,15 +124,15 @@ items: type: MLEM.Textures.TextureRegion - id: defaultColors type: System.Int32[] - content.vb: Protected Sub New(baseName As String, name As String, price As Integer, textureRegions As Dictionary(Of Direction2, TextureRegion), colorSchemes As ColorScheme(), colors As Integer(), canBuy As Boolean, pathCostModifier As Single, natural As Boolean, icon As TextureRegion, defaultColors As Integer()) + content.vb: Protected Sub New(baseName As String, name As String, price As Integer, textureRegions As Dictionary(Of Direction2, TextureRegion()), colorSchemes As ColorScheme(), colors As Integer(), canBuy As Boolean, pathCostModifier As Single, natural As Boolean, icon As TextureRegion, defaultColors As Integer()) overload: TinyLife.World.GrassyAutoTile.#ctor* - nameWithType.vb: GrassyAutoTile.GrassyAutoTile(String, String, Int32, Dictionary(Of Direction2, TextureRegion), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) + nameWithType.vb: GrassyAutoTile.GrassyAutoTile(String, String, Int32, Dictionary(Of Direction2, TextureRegion()), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) modifiers.csharp: - protected modifiers.vb: - Protected - fullName.vb: TinyLife.World.GrassyAutoTile.GrassyAutoTile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion), TinyLife.Utilities.ColorScheme(), System.Int32(), System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32()) - name.vb: GrassyAutoTile(String, String, Int32, Dictionary(Of Direction2, TextureRegion), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) + fullName.vb: TinyLife.World.GrassyAutoTile.GrassyAutoTile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()), TinyLife.Utilities.ColorScheme(), System.Int32(), System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32()) + name.vb: GrassyAutoTile(String, String, Int32, Dictionary(Of Direction2, TextureRegion()), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) - uid: TinyLife.World.GrassyAutoTile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) commentId: M:TinyLife.World.GrassyAutoTile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) id: Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) @@ -145,7 +147,7 @@ items: source: remote: path: TinyLife/World/GrassyAutoTile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/GrassyAutoTile.cs @@ -205,7 +207,7 @@ items: source: remote: path: TinyLife/World/GrassyAutoTile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNeighborChanged path: ../TinyLife/World/GrassyAutoTile.cs @@ -450,6 +452,61 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + commentId: M:TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + parent: TinyLife.World.Tile + isExternal: true + name: GetVariationTexture(Direction2, Point) + nameWithType: Tile.GetVariationTexture(Direction2, Point) + fullName: TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2, Microsoft.Xna.Framework.Point) + spec.csharp: + - uid: TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + name: GetVariationTexture + nameWithType: Tile.GetVariationTexture + fullName: TinyLife.World.Tile.GetVariationTexture + - name: ( + nameWithType: ( + fullName: ( + - uid: MLEM.Misc.Direction2 + name: Direction2 + nameWithType: Direction2 + fullName: MLEM.Misc.Direction2 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: Microsoft.Xna.Framework.Point + name: Point + nameWithType: Point + fullName: Microsoft.Xna.Framework.Point + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + name: GetVariationTexture + nameWithType: Tile.GetVariationTexture + fullName: TinyLife.World.Tile.GetVariationTexture + - name: ( + nameWithType: ( + fullName: ( + - uid: MLEM.Misc.Direction2 + name: Direction2 + nameWithType: Direction2 + fullName: MLEM.Misc.Direction2 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: Microsoft.Xna.Framework.Point + name: Point + nameWithType: Point + fullName: Microsoft.Xna.Framework.Point + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) commentId: M:TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) parent: TinyLife.World.Tile @@ -700,6 +757,268 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + commentId: M:TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + parent: TinyLife.World.Tile + isExternal: true + name: Register(String, Int32, TextureRegion[], ColorScheme[], Single, Boolean, Boolean, TextureRegion, Func, Int32[], Type) + nameWithType: Tile.Register(String, Int32, TextureRegion[], ColorScheme[], Single, Boolean, Boolean, TextureRegion, Func, Int32[], Type) + fullName: TinyLife.World.Tile.Register(System.String, System.Int32, MLEM.Textures.TextureRegion[], TinyLife.Utilities.ColorScheme[], System.Single, System.Boolean, System.Boolean, MLEM.Textures.TextureRegion, System.Func, System.Int32[], System.Type) + nameWithType.vb: Tile.Register(String, Int32, TextureRegion(), ColorScheme(), Single, Boolean, Boolean, TextureRegion, Func(Of Direction2, TextureRegion()), Int32(), Type) + fullName.vb: TinyLife.World.Tile.Register(System.String, System.Int32, MLEM.Textures.TextureRegion(), TinyLife.Utilities.ColorScheme(), System.Single, System.Boolean, System.Boolean, MLEM.Textures.TextureRegion, System.Func(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()), System.Int32(), System.Type) + name.vb: Register(String, Int32, TextureRegion(), ColorScheme(), Single, Boolean, Boolean, TextureRegion, Func(Of Direction2, TextureRegion()), Int32(), Type) + spec.csharp: + - uid: TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + name: Register + nameWithType: Tile.Register + fullName: TinyLife.World.Tile.Register + - name: ( + nameWithType: ( + fullName: ( + - uid: System.String + name: String + nameWithType: String + fullName: System.String + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: TinyLife.Utilities.ColorScheme + name: ColorScheme + nameWithType: ColorScheme + fullName: TinyLife.Utilities.ColorScheme + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Single + name: Single + nameWithType: Single + fullName: System.Single + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Func`2 + name: Func + nameWithType: Func + fullName: System.Func + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: MLEM.Misc.Direction2 + name: Direction2 + nameWithType: Direction2 + fullName: MLEM.Misc.Direction2 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Type + name: Type + nameWithType: Type + fullName: System.Type + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + name: Register + nameWithType: Tile.Register + fullName: TinyLife.World.Tile.Register + - name: ( + nameWithType: ( + fullName: ( + - uid: System.String + name: String + nameWithType: String + fullName: System.String + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: TinyLife.Utilities.ColorScheme + name: ColorScheme + nameWithType: ColorScheme + fullName: TinyLife.Utilities.ColorScheme + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Single + name: Single + nameWithType: Single + fullName: System.Single + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Func`2 + name: Func + nameWithType: Func + fullName: System.Func + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: MLEM.Misc.Direction2 + name: Direction2 + nameWithType: Direction2 + fullName: MLEM.Misc.Direction2 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Type + name: Type + nameWithType: Type + fullName: System.Type + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1083,16 +1402,16 @@ references: name: Int32 nameWithType: Int32 fullName: System.Int32 -- uid: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} - commentId: T:System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} +- uid: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} + commentId: T:System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} parent: System.Collections.Generic definition: System.Collections.Generic.Dictionary`2 - name: Dictionary - nameWithType: Dictionary - fullName: System.Collections.Generic.Dictionary - nameWithType.vb: Dictionary(Of Direction2, TextureRegion) - fullName.vb: System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion) - name.vb: Dictionary(Of Direction2, TextureRegion) + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of Direction2, TextureRegion()) + fullName.vb: System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()) + name.vb: Dictionary(Of Direction2, TextureRegion()) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary @@ -1115,6 +1434,9 @@ references: nameWithType: TextureRegion fullName: MLEM.Textures.TextureRegion isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' - name: '>' nameWithType: '>' fullName: '>' @@ -1140,6 +1462,9 @@ references: nameWithType: TextureRegion fullName: MLEM.Textures.TextureRegion isExternal: true + - name: () + nameWithType: () + fullName: () - name: ) nameWithType: ) fullName: ) diff --git a/docs/api/TinyLife.World.Household.yml b/docs/api/TinyLife.World.Household.yml index b3836e8..96531a5 100644 --- a/docs/api/TinyLife.World.Household.yml +++ b/docs/api/TinyLife.World.Household.yml @@ -39,7 +39,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Household path: ../TinyLife/World/Household.cs @@ -102,7 +102,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DefaultMoney path: ../TinyLife/World/Household.cs @@ -137,7 +137,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Money path: ../TinyLife/World/Household.cs @@ -184,7 +184,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Members path: ../TinyLife/World/Household.cs @@ -221,7 +221,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lot path: ../TinyLife/World/Household.cs @@ -258,7 +258,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/Household.cs @@ -295,7 +295,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsCurrent path: ../TinyLife/World/Household.cs @@ -332,7 +332,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Description path: ../TinyLife/World/Household.cs @@ -375,7 +375,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FurnitureStorage path: ../TinyLife/World/Household.cs @@ -420,7 +420,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ClothesStorage path: ../TinyLife/World/Household.cs @@ -465,7 +465,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UnopenedMail path: ../TinyLife/World/Household.cs @@ -510,7 +510,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Household.cs @@ -549,7 +549,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/World/Household.cs @@ -591,7 +591,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Add path: ../TinyLife/World/Household.cs @@ -627,7 +627,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Remove path: ../TinyLife/World/Household.cs @@ -669,7 +669,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HasMember path: ../TinyLife/World/Household.cs @@ -708,7 +708,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MarkLotVisible path: ../TinyLife/World/Household.cs @@ -744,7 +744,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MarkLotNonVisible path: ../TinyLife/World/Household.cs @@ -780,7 +780,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsLotVisible path: ../TinyLife/World/Household.cs @@ -819,7 +819,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAverageFriendshipTo path: ../TinyLife/World/Household.cs @@ -858,7 +858,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Household.cs @@ -896,7 +896,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Export path: ../TinyLife/World/Household.cs @@ -935,7 +935,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Import path: ../TinyLife/World/Household.cs @@ -974,7 +974,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AreUtilitiesDisabled path: ../TinyLife/World/Household.cs @@ -985,7 +985,7 @@ items: summary: "\nReturns whether power and water should currently be considered disabled for the that this household is on.\nThis method returns true when has contained a for three or more in-game days.\n" example: [] syntax: - content: public bool AreUtilitiesDisabled(TimeSpan? time = null) + content: public bool AreUtilitiesDisabled(TimeSpan? time = default(TimeSpan? )) parameters: - id: time type: System.Nullable{System.TimeSpan} @@ -1016,7 +1016,7 @@ items: source: remote: path: TinyLife/World/Household.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsComplete path: ../TinyLife/World/Household.cs diff --git a/docs/api/TinyLife.World.IPricedObject.yml b/docs/api/TinyLife.World.IPricedObject.yml index 874027d..1c19d3d 100644 --- a/docs/api/TinyLife.World.IPricedObject.yml +++ b/docs/api/TinyLife.World.IPricedObject.yml @@ -16,7 +16,7 @@ items: source: remote: path: TinyLife/World/IPricedObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IPricedObject path: ../TinyLife/World/IPricedObject.cs @@ -51,7 +51,7 @@ items: source: remote: path: TinyLife/World/IPricedObject.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/IPricedObject.cs diff --git a/docs/api/TinyLife.World.LockType.yml b/docs/api/TinyLife.World.LockType.yml index cb8093c..afc22a7 100644 --- a/docs/api/TinyLife.World.LockType.yml +++ b/docs/api/TinyLife.World.LockType.yml @@ -19,7 +19,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LockType path: ../TinyLife/World/Opening.cs @@ -65,7 +65,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Household path: ../TinyLife/World/Opening.cs @@ -99,7 +99,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: HouseholdFriends path: ../TinyLife/World/Opening.cs @@ -133,7 +133,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Employees path: ../TinyLife/World/Opening.cs @@ -167,7 +167,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Others path: ../TinyLife/World/Opening.cs diff --git a/docs/api/TinyLife.World.Lot.yml b/docs/api/TinyLife.World.Lot.yml index 5c8c560..4ca5fa3 100644 --- a/docs/api/TinyLife.World.Lot.yml +++ b/docs/api/TinyLife.World.Lot.yml @@ -33,7 +33,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lot path: ../TinyLife/World/Lot.cs @@ -97,7 +97,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Id path: ../TinyLife/World/Lot.cs @@ -142,7 +142,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Area path: ../TinyLife/World/Lot.cs @@ -189,7 +189,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/World/Lot.cs @@ -232,7 +232,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Household path: ../TinyLife/World/Lot.cs @@ -269,7 +269,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/Lot.cs @@ -312,7 +312,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Lot.cs @@ -351,7 +351,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Lot.cs @@ -386,7 +386,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetObjects path: ../TinyLife/World/Lot.cs @@ -427,7 +427,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWalls path: ../TinyLife/World/Lot.cs @@ -462,7 +462,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRoofs path: ../TinyLife/World/Lot.cs @@ -497,7 +497,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AreRequirementsMet path: ../TinyLife/World/Lot.cs @@ -532,7 +532,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHomeLocation path: ../TinyLife/World/Lot.cs @@ -571,7 +571,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Lot.cs @@ -608,7 +608,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWeeklyBills path: ../TinyLife/World/Lot.cs @@ -643,7 +643,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Export path: ../TinyLife/World/Lot.cs @@ -678,7 +678,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Import path: ../TinyLife/World/Lot.cs @@ -720,7 +720,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanImport path: ../TinyLife/World/Lot.cs @@ -759,7 +759,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCoveredArea path: ../TinyLife/World/Lot.cs diff --git a/docs/api/TinyLife.World.LotEmployment.Instance.yml b/docs/api/TinyLife.World.LotEmployment.Instance.yml index 02f1b8e..dd04f5b 100644 --- a/docs/api/TinyLife.World.LotEmployment.Instance.yml +++ b/docs/api/TinyLife.World.LotEmployment.Instance.yml @@ -21,7 +21,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Instance path: ../TinyLife/World/LotEmployment.cs @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lot path: ../TinyLife/World/LotEmployment.cs @@ -113,7 +113,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/World/LotEmployment.cs @@ -150,7 +150,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetManually path: ../TinyLife/World/LotEmployment.cs @@ -195,7 +195,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/LotEmployment.cs @@ -240,7 +240,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/LotEmployment.cs @@ -279,7 +279,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ShouldWorkRightNow path: ../TinyLife/World/LotEmployment.cs diff --git a/docs/api/TinyLife.World.LotEmployment.yml b/docs/api/TinyLife.World.LotEmployment.yml index 674b813..92cd8b0 100644 --- a/docs/api/TinyLife.World.LotEmployment.yml +++ b/docs/api/TinyLife.World.LotEmployment.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LotEmployment path: ../TinyLife/World/LotEmployment.cs @@ -68,7 +68,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MapWideEmployments path: ../TinyLife/World/LotEmployment.cs @@ -105,7 +105,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/LotEmployment.cs @@ -140,7 +140,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Actions path: ../TinyLife/World/LotEmployment.cs @@ -175,7 +175,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorkHours path: ../TinyLife/World/LotEmployment.cs @@ -210,7 +210,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsFinished path: ../TinyLife/World/LotEmployment.cs @@ -247,7 +247,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/LotEmployment.cs @@ -292,7 +292,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetCurrentPerson path: ../TinyLife/World/LotEmployment.cs @@ -334,7 +334,7 @@ items: source: remote: path: TinyLife/World/LotEmployment.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetCurrentPerson path: ../TinyLife/World/LotEmployment.cs diff --git a/docs/api/TinyLife.World.LotType.yml b/docs/api/TinyLife.World.LotType.yml index c94e255..84b4246 100644 --- a/docs/api/TinyLife.World.LotType.yml +++ b/docs/api/TinyLife.World.LotType.yml @@ -28,7 +28,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LotType path: ../TinyLife/World/Lot.cs @@ -79,7 +79,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/World/Lot.cs @@ -116,7 +116,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Residential path: ../TinyLife/World/Lot.cs @@ -151,7 +151,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Park path: ../TinyLife/World/Lot.cs @@ -186,7 +186,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gym path: ../TinyLife/World/Lot.cs @@ -221,7 +221,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GenericPublicLot path: ../TinyLife/World/Lot.cs @@ -256,7 +256,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/Lot.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsResidential path: ../TinyLife/World/Lot.cs @@ -326,7 +326,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RequiredFurniture path: ../TinyLife/World/Lot.cs @@ -361,7 +361,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetVisitPriority path: ../TinyLife/World/Lot.cs @@ -396,7 +396,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Employments path: ../TinyLife/World/Lot.cs @@ -433,7 +433,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Lot.cs @@ -481,7 +481,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/World/Lot.cs @@ -521,7 +521,7 @@ items: source: remote: path: TinyLife/World/Lot.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetGroupVisitPriority path: ../TinyLife/World/Lot.cs diff --git a/docs/api/TinyLife.World.Mail.yml b/docs/api/TinyLife.World.Mail.yml index af6e47f..c1f7807 100644 --- a/docs/api/TinyLife.World.Mail.yml +++ b/docs/api/TinyLife.World.Mail.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Mail path: ../TinyLife/World/Mail.cs @@ -91,7 +91,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Id path: ../TinyLife/World/Mail.cs @@ -136,7 +136,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SentTime path: ../TinyLife/World/Mail.cs @@ -181,7 +181,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/World/Mail.cs @@ -216,7 +216,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Mail.cs @@ -255,7 +255,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetReceivingLot path: ../TinyLife/World/Mail.cs @@ -290,7 +290,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetReceivingMailbox path: ../TinyLife/World/Mail.cs @@ -325,7 +325,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnReceived path: ../TinyLife/World/Mail.cs @@ -359,7 +359,7 @@ items: source: remote: path: TinyLife/World/Mail.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Mail.cs diff --git a/docs/api/TinyLife.World.Map.yml b/docs/api/TinyLife.World.Map.yml index b8165b0..5d7e0dd 100644 --- a/docs/api/TinyLife.World.Map.yml +++ b/docs/api/TinyLife.World.Map.yml @@ -90,7 +90,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/World/Map.cs @@ -153,7 +153,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoadRadius path: ../TinyLife/World/Map.cs @@ -188,7 +188,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnUpdate path: ../TinyLife/World/Map.cs @@ -221,7 +221,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnObjectAdded path: ../TinyLife/World/Map.cs @@ -254,7 +254,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnObjectRemoved path: ../TinyLife/World/Map.cs @@ -287,7 +287,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MailToSend path: ../TinyLife/World/Map.cs @@ -332,7 +332,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SizeInSections path: ../TinyLife/World/Map.cs @@ -379,7 +379,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Size path: ../TinyLife/World/Map.cs @@ -416,7 +416,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: StaticVersion path: ../TinyLife/World/Map.cs @@ -463,7 +463,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Map.cs @@ -499,7 +499,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Finalize path: ../TinyLife/World/Map.cs @@ -530,7 +530,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/World/Map.cs @@ -572,7 +572,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Map.cs @@ -583,7 +583,7 @@ items: summary: "\nDraws this map and all of its objects.\nNote that drawing in this manner uses multiple objects, for things like the ground and the lightmaps.\n" example: [] syntax: - content: public void Draw(GameTime time, SpriteBatch batch, bool selectionMode, RectangleF? visibleArea = null, Matrix? visibleMatrix = null, RenderTarget2D lightmap = null, bool ignoreObjectVisibility = false) + content: public void Draw(GameTime time, SpriteBatch batch, bool selectionMode, RectangleF? visibleArea = default(RectangleF? ), Matrix? visibleMatrix = default(Matrix? ), RenderTarget2D lightmap = null, bool ignoreObjectVisibility = false) parameters: - id: time type: Microsoft.Xna.Framework.GameTime @@ -629,7 +629,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDepth path: ../TinyLife/World/Map.cs @@ -680,7 +680,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsInBounds path: ../TinyLife/World/Map.cs @@ -719,7 +719,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsInSectionBounds path: ../TinyLife/World/Map.cs @@ -758,7 +758,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddRoad path: ../TinyLife/World/Map.cs @@ -794,7 +794,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsRoad path: ../TinyLife/World/Map.cs @@ -833,7 +833,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetClosestRoad path: ../TinyLife/World/Map.cs @@ -875,7 +875,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRoads path: ../TinyLife/World/Map.cs @@ -910,7 +910,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetClosestSidewalk path: ../TinyLife/World/Map.cs @@ -952,7 +952,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetTilesAround path: ../TinyLife/World/Map.cs @@ -1006,7 +1006,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetClosestEmptyTile path: ../TinyLife/World/Map.cs @@ -1057,7 +1057,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRandomTile path: ../TinyLife/World/Map.cs @@ -1114,7 +1114,7 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Map.cs @@ -1159,11 +1159,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRoom path: ../TinyLife/World/Map.cs - startLine: 682 + startLine: 684 assemblies: - Tiny Life namespace: TinyLife.World @@ -1198,11 +1198,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetLot path: ../TinyLife/World/Map.cs - startLine: 697 + startLine: 699 assemblies: - Tiny Life namespace: TinyLife.World @@ -1237,11 +1237,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetLot path: ../TinyLife/World/Map.cs - startLine: 708 + startLine: 710 assemblies: - Tiny Life namespace: TinyLife.World @@ -1276,11 +1276,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddLot path: ../TinyLife/World/Map.cs - startLine: 721 + startLine: 723 assemblies: - Tiny Life namespace: TinyLife.World @@ -1315,11 +1315,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveLot path: ../TinyLife/World/Map.cs - startLine: 731 + startLine: 733 assemblies: - Tiny Life namespace: TinyLife.World @@ -1351,11 +1351,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetLots path: ../TinyLife/World/Map.cs - startLine: 739 + startLine: 741 assemblies: - Tiny Life namespace: TinyLife.World @@ -1386,11 +1386,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddWall path: ../TinyLife/World/Map.cs - startLine: 750 + startLine: 752 assemblies: - Tiny Life namespace: TinyLife.World @@ -1428,11 +1428,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddWall path: ../TinyLife/World/Map.cs - startLine: 762 + startLine: 764 assemblies: - Tiny Life namespace: TinyLife.World @@ -1470,11 +1470,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveWall path: ../TinyLife/World/Map.cs - startLine: 773 + startLine: 775 assemblies: - Tiny Life namespace: TinyLife.World @@ -1512,11 +1512,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWallBetween path: ../TinyLife/World/Map.cs - startLine: 789 + startLine: 791 assemblies: - Tiny Life namespace: TinyLife.World @@ -1554,11 +1554,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetTile path: ../TinyLife/World/Map.cs - startLine: 803 + startLine: 805 assemblies: - Tiny Life namespace: TinyLife.World @@ -1593,11 +1593,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetTile path: ../TinyLife/World/Map.cs - startLine: 813 + startLine: 815 assemblies: - Tiny Life namespace: TinyLife.World @@ -1632,11 +1632,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddRoof path: ../TinyLife/World/Map.cs - startLine: 828 + startLine: 830 assemblies: - Tiny Life namespace: TinyLife.World @@ -1668,11 +1668,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRoof path: ../TinyLife/World/Map.cs - startLine: 838 + startLine: 840 assemblies: - Tiny Life namespace: TinyLife.World @@ -1707,11 +1707,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveRoof path: ../TinyLife/World/Map.cs - startLine: 851 + startLine: 853 assemblies: - Tiny Life namespace: TinyLife.World @@ -1743,11 +1743,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetObjects path: ../TinyLife/World/Map.cs - startLine: 862 + startLine: 864 assemblies: - Tiny Life namespace: TinyLife.World @@ -1790,11 +1790,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetObject path: ../TinyLife/World/Map.cs - startLine: 878 + startLine: 880 assemblies: - Tiny Life namespace: TinyLife.World @@ -1837,11 +1837,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddObject path: ../TinyLife/World/Map.cs - startLine: 893 + startLine: 895 assemblies: - Tiny Life namespace: TinyLife.World @@ -1873,11 +1873,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveObject path: ../TinyLife/World/Map.cs - startLine: 916 + startLine: 918 assemblies: - Tiny Life namespace: TinyLife.World @@ -1910,11 +1910,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPeople path: ../TinyLife/World/Map.cs - startLine: 934 + startLine: 936 assemblies: - Tiny Life namespace: TinyLife.World @@ -1945,11 +1945,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHousehold path: ../TinyLife/World/Map.cs - startLine: 946 + startLine: 948 assemblies: - Tiny Life namespace: TinyLife.World @@ -1984,11 +1984,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHousehold path: ../TinyLife/World/Map.cs - startLine: 959 + startLine: 961 assemblies: - Tiny Life namespace: TinyLife.World @@ -2023,11 +2023,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddHousehold path: ../TinyLife/World/Map.cs - startLine: 972 + startLine: 974 assemblies: - Tiny Life namespace: TinyLife.World @@ -2062,11 +2062,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveHousehold path: ../TinyLife/World/Map.cs - startLine: 982 + startLine: 984 assemblies: - Tiny Life namespace: TinyLife.World @@ -2098,11 +2098,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetHouseholds path: ../TinyLife/World/Map.cs - startLine: 990 + startLine: 992 assemblies: - Tiny Life namespace: TinyLife.World @@ -2133,11 +2133,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSection path: ../TinyLife/World/Map.cs - startLine: 1000 + startLine: 1002 assemblies: - Tiny Life namespace: TinyLife.World @@ -2172,11 +2172,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSections path: ../TinyLife/World/Map.cs - startLine: 1012 + startLine: 1014 assemblies: - Tiny Life namespace: TinyLife.World @@ -2214,11 +2214,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSections path: ../TinyLife/World/Map.cs - startLine: 1022 + startLine: 1024 assemblies: - Tiny Life namespace: TinyLife.World @@ -2256,11 +2256,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MarkDirtyForPathfinding path: ../TinyLife/World/Map.cs - startLine: 1043 + startLine: 1045 assemblies: - Tiny Life namespace: TinyLife.World @@ -2292,11 +2292,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPathCost path: ../TinyLife/World/Map.cs - startLine: 1063 + startLine: 1065 assemblies: - Tiny Life namespace: TinyLife.World @@ -2337,11 +2337,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanWalkBetween path: ../TinyLife/World/Map.cs - startLine: 1082 + startLine: 1084 assemblies: - Tiny Life namespace: TinyLife.World @@ -2382,11 +2382,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsFreeSpot path: ../TinyLife/World/Map.cs - startLine: 1091 + startLine: 1093 assemblies: - Tiny Life namespace: TinyLife.World @@ -2421,11 +2421,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDeadPerson path: ../TinyLife/World/Map.cs - startLine: 1101 + startLine: 1103 assemblies: - Tiny Life namespace: TinyLife.World @@ -2460,11 +2460,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlaySound path: ../TinyLife/World/Map.cs - startLine: 1121 + startLine: 1123 assemblies: - Tiny Life namespace: TinyLife.World @@ -2514,11 +2514,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlaySound path: ../TinyLife/World/Map.cs - startLine: 1138 + startLine: 1140 assemblies: - Tiny Life namespace: TinyLife.World @@ -2568,11 +2568,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetClosestExitRoad path: ../TinyLife/World/Map.cs - startLine: 1156 + startLine: 1158 assemblies: - Tiny Life namespace: TinyLife.World @@ -2606,11 +2606,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetExitRoads path: ../TinyLife/World/Map.cs - startLine: 1164 + startLine: 1166 assemblies: - Tiny Life namespace: TinyLife.World @@ -2641,11 +2641,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWalls path: ../TinyLife/World/Map.cs - startLine: 1179 + startLine: 1181 assemblies: - Tiny Life namespace: TinyLife.World @@ -2680,18 +2680,18 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ApplyCameraRotation path: ../TinyLife/World/Map.cs - startLine: 1195 + startLine: 1197 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nApplies the game's current to the given position in world space\n" example: [] syntax: - content: public Vector2 ApplyCameraRotation(Vector2 worldPos, bool borderOffset = false, Direction2? cameraRotation = null) + content: public Vector2 ApplyCameraRotation(Vector2 worldPos, bool borderOffset = false, Direction2? cameraRotation = default(Direction2? )) parameters: - id: worldPos type: Microsoft.Xna.Framework.Vector2 @@ -2728,18 +2728,18 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ApplyInverseCameraRotation path: ../TinyLife/World/Map.cs - startLine: 1211 + startLine: 1213 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nApplies the game's current to the given position in world space in reverse, undoing the action done by \n" example: [] syntax: - content: public Vector2 ApplyInverseCameraRotation(Vector2 worldPos, Direction2? cameraRotation = null) + content: public Vector2 ApplyInverseCameraRotation(Vector2 worldPos, Direction2? cameraRotation = default(Direction2? )) parameters: - id: worldPos type: Microsoft.Xna.Framework.Vector2 @@ -2773,11 +2773,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCameraRotationChanged path: ../TinyLife/World/Map.cs - startLine: 1226 + startLine: 1228 assemblies: - Tiny Life namespace: TinyLife.World @@ -2812,11 +2812,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AddLight path: ../TinyLife/World/Map.cs - startLine: 1248 + startLine: 1250 assemblies: - Tiny Life namespace: TinyLife.World @@ -2848,11 +2848,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RemoveLight path: ../TinyLife/World/Map.cs - startLine: 1257 + startLine: 1259 assemblies: - Tiny Life namespace: TinyLife.World @@ -2884,11 +2884,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MoveEverything path: ../TinyLife/World/Map.cs - startLine: 1268 + startLine: 1270 assemblies: - Tiny Life namespace: TinyLife.World @@ -2926,11 +2926,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ValidateRooms path: ../TinyLife/World/Map.cs - startLine: 1327 + startLine: 1329 assemblies: - Tiny Life namespace: TinyLife.World @@ -2962,11 +2962,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetRegularVisitors path: ../TinyLife/World/Map.cs - startLine: 1342 + startLine: 1344 assemblies: - Tiny Life namespace: TinyLife.World @@ -2997,11 +2997,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpdateExternalPeople path: ../TinyLife/World/Map.cs - startLine: 1354 + startLine: 1356 assemblies: - Tiny Life namespace: TinyLife.World @@ -3035,11 +3035,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsLotHidden path: ../TinyLife/World/Map.cs - startLine: 1443 + startLine: 1445 assemblies: - Tiny Life namespace: TinyLife.World @@ -3074,11 +3074,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetAllLotEmployments path: ../TinyLife/World/Map.cs - startLine: 1460 + startLine: 1462 assemblies: - Tiny Life namespace: TinyLife.World @@ -3109,11 +3109,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MarkTileDirtyForDrawing path: ../TinyLife/World/Map.cs - startLine: 1473 + startLine: 1475 assemblies: - Tiny Life namespace: TinyLife.World @@ -3145,11 +3145,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LoadStaticMap path: ../TinyLife/World/Map.cs - startLine: 1867 + startLine: 1872 assemblies: - Tiny Life namespace: TinyLife.World diff --git a/docs/api/TinyLife.World.MapAudioEmitter.yml b/docs/api/TinyLife.World.MapAudioEmitter.yml index 9e2edd3..6e03a7e 100644 --- a/docs/api/TinyLife.World.MapAudioEmitter.yml +++ b/docs/api/TinyLife.World.MapAudioEmitter.yml @@ -16,7 +16,7 @@ items: source: remote: path: TinyLife/World/MapAudioEmitter.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MapAudioEmitter path: ../TinyLife/World/MapAudioEmitter.cs @@ -69,7 +69,7 @@ items: source: remote: path: TinyLife/World/MapAudioEmitter.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WorldPosition path: ../TinyLife/World/MapAudioEmitter.cs diff --git a/docs/api/TinyLife.World.MapSection.yml b/docs/api/TinyLife.World.MapSection.yml index 9b0b49b..8cf778d 100644 --- a/docs/api/TinyLife.World.MapSection.yml +++ b/docs/api/TinyLife.World.MapSection.yml @@ -23,7 +23,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: MapSection path: ../TinyLife/World/MapSection.cs @@ -86,7 +86,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Size path: ../TinyLife/World/MapSection.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Bleed path: ../TinyLife/World/MapSection.cs @@ -156,7 +156,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SectionPos path: ../TinyLife/World/MapSection.cs @@ -201,7 +201,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Pos path: ../TinyLife/World/MapSection.cs @@ -238,7 +238,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/MapSection.cs @@ -277,7 +277,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/World/MapSection.cs @@ -319,7 +319,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ValidateEarly path: ../TinyLife/World/MapSection.cs @@ -355,7 +355,7 @@ items: source: remote: path: TinyLife/World/MapSection.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/MapSection.cs diff --git a/docs/api/TinyLife.World.Opening.yml b/docs/api/TinyLife.World.Opening.yml index 41421f1..daa7562 100644 --- a/docs/api/TinyLife.World.Opening.yml +++ b/docs/api/TinyLife.World.Opening.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opening path: ../TinyLife/World/Opening.cs @@ -82,7 +82,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/World/Opening.cs @@ -127,7 +127,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Color path: ../TinyLife/World/Opening.cs @@ -172,7 +172,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Opening.cs @@ -211,7 +211,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Opening.cs @@ -276,7 +276,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanWalkThrough path: ../TinyLife/World/Opening.cs @@ -318,7 +318,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanPlaceOn path: ../TinyLife/World/Opening.cs @@ -358,7 +358,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Opening.cs diff --git a/docs/api/TinyLife.World.OpeningType.yml b/docs/api/TinyLife.World.OpeningType.yml index f0a7b7b..77c5fe8 100644 --- a/docs/api/TinyLife.World.OpeningType.yml +++ b/docs/api/TinyLife.World.OpeningType.yml @@ -26,7 +26,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OpeningType path: ../TinyLife/World/OpeningType.cs @@ -77,7 +77,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/World/OpeningType.cs @@ -114,7 +114,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/OpeningType.cs @@ -149,7 +149,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallMode path: ../TinyLife/World/OpeningType.cs @@ -184,7 +184,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/World/OpeningType.cs @@ -219,7 +219,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorScheme path: ../TinyLife/World/OpeningType.cs @@ -254,7 +254,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/World/OpeningType.cs @@ -289,7 +289,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/OpeningType.cs @@ -346,7 +346,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/OpeningType.cs @@ -409,7 +409,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawUi path: ../TinyLife/World/OpeningType.cs @@ -457,7 +457,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Construct path: ../TinyLife/World/OpeningType.cs @@ -499,7 +499,7 @@ items: source: remote: path: TinyLife/World/OpeningType.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/World/OpeningType.cs diff --git a/docs/api/TinyLife.World.Roof.yml b/docs/api/TinyLife.World.Roof.yml index 70cfad0..325930f 100644 --- a/docs/api/TinyLife.World.Roof.yml +++ b/docs/api/TinyLife.World.Roof.yml @@ -24,7 +24,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Roof path: ../TinyLife/World/Roof.cs @@ -82,7 +82,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/World/Roof.cs @@ -127,7 +127,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rotation path: ../TinyLife/World/Roof.cs @@ -174,7 +174,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Color path: ../TinyLife/World/Roof.cs @@ -219,7 +219,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Area path: ../TinyLife/World/Roof.cs @@ -266,7 +266,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wallpaper path: ../TinyLife/World/Roof.cs @@ -309,7 +309,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Roof.cs @@ -354,7 +354,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Roof.cs @@ -391,7 +391,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Roof.cs @@ -426,7 +426,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GenerateRoof path: ../TinyLife/World/Roof.cs diff --git a/docs/api/TinyLife.World.RoofStyle.yml b/docs/api/TinyLife.World.RoofStyle.yml index 6bec22e..e648983 100644 --- a/docs/api/TinyLife.World.RoofStyle.yml +++ b/docs/api/TinyLife.World.RoofStyle.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofStyle path: ../TinyLife/World/Roof.cs @@ -53,7 +53,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Flat path: ../TinyLife/World/Roof.cs @@ -87,7 +87,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Gable path: ../TinyLife/World/Roof.cs @@ -121,7 +121,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Custom path: ../TinyLife/World/Roof.cs diff --git a/docs/api/TinyLife.World.RoofType.yml b/docs/api/TinyLife.World.RoofType.yml index 864b45b..86dab7d 100644 --- a/docs/api/TinyLife.World.RoofType.yml +++ b/docs/api/TinyLife.World.RoofType.yml @@ -31,7 +31,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofType path: ../TinyLife/World/Roof.cs @@ -82,7 +82,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Types path: ../TinyLife/World/Roof.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ModernFlat path: ../TinyLife/World/Roof.cs @@ -154,7 +154,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SquareShingles path: ../TinyLife/World/Roof.cs @@ -189,7 +189,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Thatch path: ../TinyLife/World/Roof.cs @@ -224,7 +224,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoundedShingles path: ../TinyLife/World/Roof.cs @@ -259,7 +259,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/Roof.cs @@ -294,7 +294,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/World/Roof.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Colors path: ../TinyLife/World/Roof.cs @@ -364,7 +364,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Texture path: ../TinyLife/World/Roof.cs @@ -399,7 +399,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Style path: ../TinyLife/World/Roof.cs @@ -434,7 +434,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/World/Roof.cs @@ -469,7 +469,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Roof.cs @@ -520,7 +520,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawUi path: ../TinyLife/World/Roof.cs @@ -567,7 +567,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Roof.cs @@ -626,7 +626,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Roof.cs @@ -667,7 +667,7 @@ items: source: remote: path: TinyLife/World/Roof.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/World/Roof.cs diff --git a/docs/api/TinyLife.World.Room.yml b/docs/api/TinyLife.World.Room.yml index b6edda6..5523e2a 100644 --- a/docs/api/TinyLife.World.Room.yml +++ b/docs/api/TinyLife.World.Room.yml @@ -27,7 +27,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Room path: ../TinyLife/World/Room.cs @@ -72,7 +72,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Map path: ../TinyLife/World/Room.cs @@ -107,7 +107,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Center path: ../TinyLife/World/Room.cs @@ -142,7 +142,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tiles path: ../TinyLife/World/Room.cs @@ -177,7 +177,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CoveredSections path: ../TinyLife/World/Room.cs @@ -212,7 +212,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FullyRoofed path: ../TinyLife/World/Room.cs @@ -249,7 +249,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsSameRoom path: ../TinyLife/World/Room.cs @@ -291,7 +291,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Room.cs @@ -326,7 +326,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetWalls path: ../TinyLife/World/Room.cs @@ -365,7 +365,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetObjects path: ../TinyLife/World/Room.cs @@ -407,7 +407,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetLights path: ../TinyLife/World/Room.cs @@ -442,7 +442,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDecorativeRating path: ../TinyLife/World/Room.cs @@ -477,7 +477,7 @@ items: source: remote: path: TinyLife/World/Room.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetConnectedRooms path: ../TinyLife/World/Room.cs diff --git a/docs/api/TinyLife.World.Soundscape.IntensityDelegate.yml b/docs/api/TinyLife.World.Soundscape.IntensityDelegate.yml index ee37432..6ba9857 100644 --- a/docs/api/TinyLife.World.Soundscape.IntensityDelegate.yml +++ b/docs/api/TinyLife.World.Soundscape.IntensityDelegate.yml @@ -15,7 +15,7 @@ items: source: remote: path: TinyLife/World/Soundscape.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IntensityDelegate path: ../TinyLife/World/Soundscape.cs diff --git a/docs/api/TinyLife.World.Soundscape.yml b/docs/api/TinyLife.World.Soundscape.yml index 2ac3a5e..2763471 100644 --- a/docs/api/TinyLife.World.Soundscape.yml +++ b/docs/api/TinyLife.World.Soundscape.yml @@ -18,7 +18,7 @@ items: source: remote: path: TinyLife/World/Soundscape.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Soundscape path: ../TinyLife/World/Soundscape.cs @@ -63,7 +63,7 @@ items: source: remote: path: TinyLife/World/Soundscape.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Soundscapes path: ../TinyLife/World/Soundscape.cs @@ -100,7 +100,7 @@ items: source: remote: path: TinyLife/World/Soundscape.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Soundscape.cs @@ -142,7 +142,7 @@ items: source: remote: path: TinyLife/World/Soundscape.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/World/Soundscape.cs diff --git a/docs/api/TinyLife.World.SwingingDoor.yml b/docs/api/TinyLife.World.SwingingDoor.yml index 0b823bc..714fcdb 100644 --- a/docs/api/TinyLife.World.SwingingDoor.yml +++ b/docs/api/TinyLife.World.SwingingDoor.yml @@ -20,7 +20,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SwingingDoor path: ../TinyLife/World/Opening.cs @@ -76,7 +76,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lock path: ../TinyLife/World/Opening.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Opening.cs @@ -158,7 +158,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Opening.cs @@ -224,7 +224,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanWalkThrough path: ../TinyLife/World/Opening.cs @@ -267,7 +267,7 @@ items: source: remote: path: TinyLife/World/Opening.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsOpen path: ../TinyLife/World/Opening.cs diff --git a/docs/api/TinyLife.World.Tile.yml b/docs/api/TinyLife.World.Tile.yml index dc46d06..33d51cb 100644 --- a/docs/api/TinyLife.World.Tile.yml +++ b/docs/api/TinyLife.World.Tile.yml @@ -5,7 +5,7 @@ items: id: Tile parent: TinyLife.World children: - - TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) + - TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) - TinyLife.World.Tile.BaseName - TinyLife.World.Tile.CanBuy - TinyLife.World.Tile.Colors @@ -14,6 +14,7 @@ items: - TinyLife.World.Tile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) - TinyLife.World.Tile.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Single) - TinyLife.World.Tile.GetPrice + - TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) - TinyLife.World.Tile.Height - TinyLife.World.Tile.Icon - TinyLife.World.Tile.Name @@ -23,6 +24,7 @@ items: - TinyLife.World.Tile.Price - TinyLife.World.Tile.ReferencePrice - TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) + - TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) - TinyLife.World.Tile.TextureRegions - TinyLife.World.Tile.Tiles - TinyLife.World.Tile.Width @@ -36,7 +38,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tile path: ../TinyLife/World/Tile.cs @@ -92,7 +94,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Tiles path: ../TinyLife/World/Tile.cs @@ -129,7 +131,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Width path: ../TinyLife/World/Tile.cs @@ -166,7 +168,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Height path: ../TinyLife/World/Tile.cs @@ -203,7 +205,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ReferencePrice path: ../TinyLife/World/Tile.cs @@ -238,7 +240,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BaseName path: ../TinyLife/World/Tile.cs @@ -273,7 +275,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/Tile.cs @@ -308,7 +310,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/World/Tile.cs @@ -343,7 +345,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorSchemes path: ../TinyLife/World/Tile.cs @@ -378,7 +380,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Colors path: ../TinyLife/World/Tile.cs @@ -413,7 +415,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanBuy path: ../TinyLife/World/Tile.cs @@ -448,7 +450,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PathCostModifier path: ../TinyLife/World/Tile.cs @@ -483,7 +485,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Natural path: ../TinyLife/World/Tile.cs @@ -518,7 +520,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/World/Tile.cs @@ -553,7 +555,7 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DefaultColors path: ../TinyLife/World/Tile.cs @@ -588,53 +590,53 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: TextureRegions path: ../TinyLife/World/Tile.cs - startLine: 122 + startLine: 123 assemblies: - Tiny Life namespace: TinyLife.World - summary: "\nThe texture regions that this tile has, based on the that represents the .\n" + summary: "\nThe texture regions that this tile has, based on the that represents the .\nEach entry in any given value array is a variation that will be used randomly when drawing. If the array has one entry, there are no additional variations.\n" example: [] syntax: - content: public readonly Dictionary TextureRegions + content: public readonly Dictionary TextureRegions return: - type: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} - content.vb: Public ReadOnly TextureRegions As Dictionary(Of Direction2, TextureRegion) + type: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} + content.vb: Public ReadOnly TextureRegions As Dictionary(Of Direction2, TextureRegion()) modifiers.csharp: - public - readonly modifiers.vb: - Public - ReadOnly -- uid: TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) - commentId: M:TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) - id: '#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])' +- uid: TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) + commentId: M:TinyLife.World.Tile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[]) + id: '#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,System.Boolean,MLEM.Textures.TextureRegion,System.Int32[])' parent: TinyLife.World.Tile langs: - csharp - vb - name: Tile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) - nameWithType: Tile.Tile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) - fullName: TinyLife.World.Tile.Tile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary, TinyLife.Utilities.ColorScheme[], System.Int32[], System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32[]) + name: Tile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) + nameWithType: Tile.Tile(String, String, Int32, Dictionary, ColorScheme[], Int32[], Boolean, Single, Boolean, TextureRegion, Int32[]) + fullName: TinyLife.World.Tile.Tile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary, TinyLife.Utilities.ColorScheme[], System.Int32[], System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32[]) type: Constructor source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Tile.cs - startLine: 128 + startLine: 129 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nCreates a new tile with the given settings.\nTo create an instance of a custom tile class, use .\n" example: [] syntax: - content: protected Tile(string baseName, string name, int price, Dictionary textureRegions, ColorScheme[] colorSchemes, int[] colors, bool canBuy, float pathCostModifier, bool natural, TextureRegion icon, int[] defaultColors) + content: protected Tile(string baseName, string name, int price, Dictionary textureRegions, ColorScheme[] colorSchemes, int[] colors, bool canBuy, float pathCostModifier, bool natural, TextureRegion icon, int[] defaultColors) parameters: - id: baseName type: System.String @@ -643,7 +645,7 @@ items: - id: price type: System.Int32 - id: textureRegions - type: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} + type: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} - id: colorSchemes type: TinyLife.Utilities.ColorScheme[] - id: colors @@ -658,15 +660,15 @@ items: type: MLEM.Textures.TextureRegion - id: defaultColors type: System.Int32[] - content.vb: Protected Sub New(baseName As String, name As String, price As Integer, textureRegions As Dictionary(Of Direction2, TextureRegion), colorSchemes As ColorScheme(), colors As Integer(), canBuy As Boolean, pathCostModifier As Single, natural As Boolean, icon As TextureRegion, defaultColors As Integer()) + content.vb: Protected Sub New(baseName As String, name As String, price As Integer, textureRegions As Dictionary(Of Direction2, TextureRegion()), colorSchemes As ColorScheme(), colors As Integer(), canBuy As Boolean, pathCostModifier As Single, natural As Boolean, icon As TextureRegion, defaultColors As Integer()) overload: TinyLife.World.Tile.#ctor* - nameWithType.vb: Tile.Tile(String, String, Int32, Dictionary(Of Direction2, TextureRegion), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) + nameWithType.vb: Tile.Tile(String, String, Int32, Dictionary(Of Direction2, TextureRegion()), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) modifiers.csharp: - protected modifiers.vb: - Protected - fullName.vb: TinyLife.World.Tile.Tile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion), TinyLife.Utilities.ColorScheme(), System.Int32(), System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32()) - name.vb: Tile(String, String, Int32, Dictionary(Of Direction2, TextureRegion), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) + fullName.vb: TinyLife.World.Tile.Tile(System.String, System.String, System.Int32, System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()), TinyLife.Utilities.ColorScheme(), System.Int32(), System.Boolean, System.Single, System.Boolean, MLEM.Textures.TextureRegion, System.Int32()) + name.vb: Tile(String, String, Int32, Dictionary(Of Direction2, TextureRegion()), ColorScheme(), Int32(), Boolean, Single, Boolean, TextureRegion, Int32()) - uid: TinyLife.World.Tile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) commentId: M:TinyLife.World.Tile.Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) id: Draw(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item}) @@ -681,11 +683,11 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Tile.cs - startLine: 152 + startLine: 153 assemblies: - Tiny Life namespace: TinyLife.World @@ -740,11 +742,11 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawUi path: ../TinyLife/World/Tile.cs - startLine: 176 + startLine: 177 assemblies: - Tiny Life namespace: TinyLife.World @@ -784,11 +786,11 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Tile.cs - startLine: 183 + startLine: 184 assemblies: - Tiny Life namespace: TinyLife.World @@ -823,11 +825,11 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnNeighborChanged path: ../TinyLife/World/Tile.cs - startLine: 194 + startLine: 195 assemblies: - Tiny Life namespace: TinyLife.World @@ -853,6 +855,43 @@ items: modifiers.vb: - Public - Overridable +- uid: TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + commentId: M:TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + id: GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point) + parent: TinyLife.World.Tile + langs: + - csharp + - vb + name: GetVariationTexture(Direction2, Point) + nameWithType: Tile.GetVariationTexture(Direction2, Point) + fullName: TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2, Microsoft.Xna.Framework.Point) + type: Method + source: + remote: + path: TinyLife/World/Tile.cs + branch: 0.20.3-dev + repo: https://git.ellpeck.de/Ellpeck/TinyLife + id: GetVariationTexture + path: ../TinyLife/World/Tile.cs + startLine: 197 + assemblies: + - Tiny Life + namespace: TinyLife.World + syntax: + content: protected TextureRegion GetVariationTexture(Direction2 direction, Point pos) + parameters: + - id: direction + type: MLEM.Misc.Direction2 + - id: pos + type: Microsoft.Xna.Framework.Point + return: + type: MLEM.Textures.TextureRegion + content.vb: Protected Function GetVariationTexture(direction As Direction2, pos As Point) As TextureRegion + overload: TinyLife.World.Tile.GetVariationTexture* + modifiers.csharp: + - protected + modifiers.vb: + - Protected - uid: TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) commentId: M:TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) id: Register(System.String,System.Int32,MLEM.Textures.TextureRegion,TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion},System.Int32[],System.Type) @@ -867,52 +906,52 @@ items: source: remote: path: TinyLife/World/Tile.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/World/Tile.cs - startLine: 210 + startLine: 216 assemblies: - Tiny Life namespace: TinyLife.World - summary: "\nRegisters a new tile with the given settings\n" + summary: "\nRegisters a new tile with the given settings.\n" example: [] syntax: content: public static void Register(string name, int price, TextureRegion textureRegion, ColorScheme[] colors, float pathCostModifier = 1F, bool canBuy = true, bool natural = false, TextureRegion icon = null, Func variations = null, int[] defaultColors = null, Type constructedType = null) parameters: - id: name type: System.String - description: The name that the tile should have + description: The name that the tile should have. - id: price type: System.Int32 - description: The tile's price + description: The tile's price. - id: textureRegion type: MLEM.Textures.TextureRegion - description: The texture region that this tile should use for rendering + description: The texture region that this tile should use for rendering. - id: colors type: TinyLife.Utilities.ColorScheme[] - description: The color scheme that this tile should have + description: The color scheme that this tile should have. - id: pathCostModifier type: System.Single - description: The path cost modifier, >= 1, that this tile should have + description: The path cost modifier, >= 1, that this tile should have. - id: canBuy type: System.Boolean - description: Whether or not the tile can be bought in the tile tool + description: Whether or not the tile can be bought in the tile tool. - id: natural type: System.Boolean - description: Whether or not the tile is considered natural ground + description: Whether or not the tile is considered natural ground. - id: icon type: MLEM.Textures.TextureRegion - description: The build mode category icon of this object + description: The build mode category icon of this object. - id: variations type: System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} - description: An optional set of variation textures that should be used based on the given camera rotation + description: An optional set of variation textures that should be used based on the given camera rotation. - id: defaultColors type: System.Int32[] description: The colors that this tile should display with in the tile tool by default. - id: constructedType type: System.Type - description: The type that tiles should be constructed from, or null to construct instances + description: The type that tiles should be constructed from, or null to construct instances. content.vb: Public Shared Sub Register(name As String, price As Integer, textureRegion As TextureRegion, colors As ColorScheme(), pathCostModifier As Single = 1F, canBuy As Boolean = True, natural As Boolean = False, icon As TextureRegion = Nothing, variations As Func(Of Direction2, TextureRegion) = Nothing, defaultColors As Integer() = Nothing, constructedType As Type = Nothing) overload: TinyLife.World.Tile.Register* nameWithType.vb: Tile.Register(String, Int32, TextureRegion, ColorScheme(), Single, Boolean, Boolean, TextureRegion, Func(Of Direction2, TextureRegion), Int32(), Type) @@ -924,6 +963,77 @@ items: - Shared fullName.vb: TinyLife.World.Tile.Register(System.String, System.Int32, MLEM.Textures.TextureRegion, TinyLife.Utilities.ColorScheme(), System.Single, System.Boolean, System.Boolean, MLEM.Textures.TextureRegion, System.Func(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion), System.Int32(), System.Type) name.vb: Register(String, Int32, TextureRegion, ColorScheme(), Single, Boolean, Boolean, TextureRegion, Func(Of Direction2, TextureRegion), Int32(), Type) +- uid: TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + commentId: M:TinyLife.World.Tile.Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + id: Register(System.String,System.Int32,MLEM.Textures.TextureRegion[],TinyLife.Utilities.ColorScheme[],System.Single,System.Boolean,System.Boolean,MLEM.Textures.TextureRegion,System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]},System.Int32[],System.Type) + parent: TinyLife.World.Tile + langs: + - csharp + - vb + name: Register(String, Int32, TextureRegion[], ColorScheme[], Single, Boolean, Boolean, TextureRegion, Func, Int32[], Type) + nameWithType: Tile.Register(String, Int32, TextureRegion[], ColorScheme[], Single, Boolean, Boolean, TextureRegion, Func, Int32[], Type) + fullName: TinyLife.World.Tile.Register(System.String, System.Int32, MLEM.Textures.TextureRegion[], TinyLife.Utilities.ColorScheme[], System.Single, System.Boolean, System.Boolean, MLEM.Textures.TextureRegion, System.Func, System.Int32[], System.Type) + type: Method + source: + remote: + path: TinyLife/World/Tile.cs + branch: 0.20.3-dev + repo: https://git.ellpeck.de/Ellpeck/TinyLife + id: Register + path: ../TinyLife/World/Tile.cs + startLine: 237 + assemblies: + - Tiny Life + namespace: TinyLife.World + summary: "\nRegisters a new tile with the given settings.\n" + example: [] + syntax: + content: public static void Register(string name, int price, TextureRegion[] textureRegions, ColorScheme[] colors, float pathCostModifier = 1F, bool canBuy = true, bool natural = false, TextureRegion icon = null, Func variations = null, int[] defaultColors = null, Type constructedType = null) + parameters: + - id: name + type: System.String + description: The name that the tile should have. + - id: price + type: System.Int32 + description: The tile's price. + - id: textureRegions + type: MLEM.Textures.TextureRegion[] + description: The texture regions that this tile should use for rendering, from which a random value will be chosen for each tile. + - id: colors + type: TinyLife.Utilities.ColorScheme[] + description: The color scheme that this tile should have. + - id: pathCostModifier + type: System.Single + description: The path cost modifier, >= 1, that this tile should have. + - id: canBuy + type: System.Boolean + description: Whether or not the tile can be bought in the tile tool. + - id: natural + type: System.Boolean + description: Whether or not the tile is considered natural ground. + - id: icon + type: MLEM.Textures.TextureRegion + description: The build mode category icon of this object. + - id: variations + type: System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} + description: An optional set of variation textures that should be used based on the given camera rotation. + - id: defaultColors + type: System.Int32[] + description: The colors that this tile should display with in the tile tool by default. + - id: constructedType + type: System.Type + description: The type that tiles should be constructed from, or null to construct instances. + content.vb: Public Shared Sub Register(name As String, price As Integer, textureRegions As TextureRegion(), colors As ColorScheme(), pathCostModifier As Single = 1F, canBuy As Boolean = True, natural As Boolean = False, icon As TextureRegion = Nothing, variations As Func(Of Direction2, TextureRegion()) = Nothing, defaultColors As Integer() = Nothing, constructedType As Type = Nothing) + overload: TinyLife.World.Tile.Register* + nameWithType.vb: Tile.Register(String, Int32, TextureRegion(), ColorScheme(), Single, Boolean, Boolean, TextureRegion, Func(Of Direction2, TextureRegion()), Int32(), Type) + modifiers.csharp: + - public + - static + modifiers.vb: + - Public + - Shared + fullName.vb: TinyLife.World.Tile.Register(System.String, System.Int32, MLEM.Textures.TextureRegion(), TinyLife.Utilities.ColorScheme(), System.Single, System.Boolean, System.Boolean, MLEM.Textures.TextureRegion, System.Func(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()), System.Int32(), System.Type) + name.vb: Register(String, Int32, TextureRegion(), ColorScheme(), Single, Boolean, Boolean, TextureRegion, Func(Of Direction2, TextureRegion()), Int32(), Type) references: - uid: TinyLife.World.Map commentId: T:TinyLife.World.Map @@ -1818,16 +1928,16 @@ references: - uid: TinyLife.Options.CameraRotation commentId: F:TinyLife.Options.CameraRotation isExternal: true -- uid: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} - commentId: T:System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion} +- uid: System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} + commentId: T:System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} parent: System.Collections.Generic definition: System.Collections.Generic.Dictionary`2 - name: Dictionary - nameWithType: Dictionary - fullName: System.Collections.Generic.Dictionary - nameWithType.vb: Dictionary(Of Direction2, TextureRegion) - fullName.vb: System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion) - name.vb: Dictionary(Of Direction2, TextureRegion) + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of Direction2, TextureRegion()) + fullName.vb: System.Collections.Generic.Dictionary(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()) + name.vb: Dictionary(Of Direction2, TextureRegion()) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary @@ -1850,6 +1960,9 @@ references: nameWithType: TextureRegion fullName: MLEM.Textures.TextureRegion isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' - name: '>' nameWithType: '>' fullName: '>' @@ -1875,6 +1988,9 @@ references: nameWithType: TextureRegion fullName: MLEM.Textures.TextureRegion isExternal: true + - name: () + nameWithType: () + fullName: () - name: ) nameWithType: ) fullName: ) @@ -2128,6 +2244,11 @@ references: name: OnNeighborChanged nameWithType: Tile.OnNeighborChanged fullName: TinyLife.World.Tile.OnNeighborChanged +- uid: TinyLife.World.Tile.GetVariationTexture* + commentId: Overload:TinyLife.World.Tile.GetVariationTexture + name: GetVariationTexture + nameWithType: Tile.GetVariationTexture + fullName: TinyLife.World.Tile.GetVariationTexture - uid: TinyLife.World.Tile.Register* commentId: Overload:TinyLife.World.Tile.Register name: Register @@ -2251,3 +2372,95 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: MLEM.Textures.TextureRegion[] + isExternal: true + name: TextureRegion[] + nameWithType: TextureRegion[] + fullName: MLEM.Textures.TextureRegion[] + nameWithType.vb: TextureRegion() + fullName.vb: MLEM.Textures.TextureRegion() + name.vb: TextureRegion() + spec.csharp: + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + spec.vb: + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: () + nameWithType: () + fullName: () +- uid: System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} + commentId: T:System.Func{MLEM.Misc.Direction2,MLEM.Textures.TextureRegion[]} + parent: System + definition: System.Func`2 + name: Func + nameWithType: Func + fullName: System.Func + nameWithType.vb: Func(Of Direction2, TextureRegion()) + fullName.vb: System.Func(Of MLEM.Misc.Direction2, MLEM.Textures.TextureRegion()) + name.vb: Func(Of Direction2, TextureRegion()) + spec.csharp: + - uid: System.Func`2 + name: Func + nameWithType: Func + fullName: System.Func + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: MLEM.Misc.Direction2 + name: Direction2 + nameWithType: Direction2 + fullName: MLEM.Misc.Direction2 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: '>' + nameWithType: '>' + fullName: '>' + spec.vb: + - uid: System.Func`2 + name: Func + nameWithType: Func + fullName: System.Func + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: MLEM.Misc.Direction2 + name: Direction2 + nameWithType: Direction2 + fullName: MLEM.Misc.Direction2 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: MLEM.Textures.TextureRegion + name: TextureRegion + nameWithType: TextureRegion + fullName: MLEM.Textures.TextureRegion + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ) + nameWithType: ) + fullName: ) diff --git a/docs/api/TinyLife.World.UpdateDelegate.yml b/docs/api/TinyLife.World.UpdateDelegate.yml index c293ac8..9f8579b 100644 --- a/docs/api/TinyLife.World.UpdateDelegate.yml +++ b/docs/api/TinyLife.World.UpdateDelegate.yml @@ -15,11 +15,11 @@ items: source: remote: path: TinyLife/World/Map.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: UpdateDelegate path: ../TinyLife/World/Map.cs - startLine: 1993 + startLine: 1998 assemblies: - Tiny Life namespace: TinyLife.World diff --git a/docs/api/TinyLife.World.Wall.yml b/docs/api/TinyLife.World.Wall.yml index d0337b5..d0f6e8e 100644 --- a/docs/api/TinyLife.World.Wall.yml +++ b/docs/api/TinyLife.World.Wall.yml @@ -34,7 +34,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wall path: ../TinyLife/World/Wall.cs @@ -98,7 +98,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DisplayModes path: ../TinyLife/World/Wall.cs @@ -135,7 +135,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/World/Wall.cs @@ -170,7 +170,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Positions path: ../TinyLife/World/Wall.cs @@ -215,7 +215,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wallpapers path: ../TinyLife/World/Wall.cs @@ -260,7 +260,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Vertical path: ../TinyLife/World/Wall.cs @@ -297,7 +297,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opening path: ../TinyLife/World/Wall.cs @@ -344,7 +344,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsStatic path: ../TinyLife/World/Wall.cs @@ -391,7 +391,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Wall.cs @@ -430,7 +430,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Wall.cs @@ -481,7 +481,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsDown path: ../TinyLife/World/Wall.cs @@ -516,7 +516,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetOpening path: ../TinyLife/World/Wall.cs @@ -555,7 +555,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayMode path: ../TinyLife/World/Wall.cs @@ -590,7 +590,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDepth path: ../TinyLife/World/Wall.cs @@ -632,7 +632,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetIndexForCamera path: ../TinyLife/World/Wall.cs @@ -667,7 +667,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPositionForCamera path: ../TinyLife/World/Wall.cs @@ -702,7 +702,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsVerticalForCamera path: ../TinyLife/World/Wall.cs @@ -737,7 +737,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Wall.cs @@ -774,7 +774,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/World/Wall.cs @@ -809,7 +809,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetFreeActionSpotInfo path: ../TinyLife/World/Wall.cs diff --git a/docs/api/TinyLife.World.WallMode.yml b/docs/api/TinyLife.World.WallMode.yml index 58063ba..a6e6831 100644 --- a/docs/api/TinyLife.World.WallMode.yml +++ b/docs/api/TinyLife.World.WallMode.yml @@ -22,7 +22,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: WallMode path: ../TinyLife/World/Wall.cs @@ -57,7 +57,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Full path: ../TinyLife/World/Wall.cs @@ -91,7 +91,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SmallWindow path: ../TinyLife/World/Wall.cs @@ -125,7 +125,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Door path: ../TinyLife/World/Wall.cs @@ -159,7 +159,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Roof path: ../TinyLife/World/Wall.cs @@ -193,7 +193,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofGable path: ../TinyLife/World/Wall.cs @@ -227,7 +227,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: RoofGableInverse path: ../TinyLife/World/Wall.cs @@ -261,7 +261,7 @@ items: source: remote: path: TinyLife/World/Wall.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LongWindow path: ../TinyLife/World/Wall.cs diff --git a/docs/api/TinyLife.World.Wallpaper.yml b/docs/api/TinyLife.World.Wallpaper.yml index 25dfc5a..60f3ef0 100644 --- a/docs/api/TinyLife.World.Wallpaper.yml +++ b/docs/api/TinyLife.World.Wallpaper.yml @@ -28,7 +28,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wallpaper path: ../TinyLife/World/Wallpaper.cs @@ -82,7 +82,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Wallpapers path: ../TinyLife/World/Wallpaper.cs @@ -119,7 +119,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: BaseName path: ../TinyLife/World/Wallpaper.cs @@ -154,7 +154,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/World/Wallpaper.cs @@ -189,7 +189,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Price path: ../TinyLife/World/Wallpaper.cs @@ -224,7 +224,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ColorSchemes path: ../TinyLife/World/Wallpaper.cs @@ -259,7 +259,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Colors path: ../TinyLife/World/Wallpaper.cs @@ -294,7 +294,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Icon path: ../TinyLife/World/Wallpaper.cs @@ -329,7 +329,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DefaultColors path: ../TinyLife/World/Wallpaper.cs @@ -364,7 +364,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Wallpaper.cs @@ -418,7 +418,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Wallpaper.cs @@ -429,7 +429,7 @@ items: summary: "\nDraws this wallpaper on the given wall with the given data.\n" example: [] syntax: - content: public virtual void Draw(GameTime time, SpriteBatch batch, Vector2 drawPos, WallMode mode, bool isDown, bool vertical, float scale, float depth, bool shadow, Color? overrideColor = null) + content: public virtual void Draw(GameTime time, SpriteBatch batch, Vector2 drawPos, WallMode mode, bool isDown, bool vertical, float scale, float depth, bool shadow, Color? overrideColor = default(Color? )) parameters: - id: time type: Microsoft.Xna.Framework.GameTime @@ -486,7 +486,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: DrawUi path: ../TinyLife/World/Wallpaper.cs @@ -533,7 +533,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetPrice path: ../TinyLife/World/Wallpaper.cs @@ -572,7 +572,7 @@ items: source: remote: path: TinyLife/World/Wallpaper.cs - branch: 0.20.2-dev + branch: 0.20.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Register path: ../TinyLife/World/Wallpaper.cs