mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 03:13:30 +01:00
0.40.1
This commit is contained in:
parent
5ca22039c5
commit
9f08de3d4d
18 changed files with 167 additions and 114 deletions
10
Changelog.md
10
Changelog.md
|
@ -1,3 +1,13 @@
|
|||
# 0.40.1
|
||||
*March 10, 2024*
|
||||
|
||||
In yesterday's update, we made a last minute change to lot visitation behavior that we thought was minor but turned out to break a lot of things. Oops?
|
||||
|
||||
Fixes
|
||||
- Fixed played people also having to be invited in, causing them to be unable to visit lots
|
||||
- Fixed home lots not counting as visited when first spawning on them, causing people to be unable to find objects on them
|
||||
- Fixed players having to use the visit lot action for people to be able to see objects on lots
|
||||
|
||||
# 0.40.0
|
||||
*March 9, 2024*
|
||||
|
||||
|
|
|
@ -653,6 +653,7 @@
|
|||
"TinyLife.Actions.GoHereAction": "TinyLife.Actions.GoHereAction.yml",
|
||||
"TinyLife.Actions.GoHereAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)": "TinyLife.Actions.GoHereAction.yml",
|
||||
"TinyLife.Actions.GoHereAction.AndThenIsCompleted": "TinyLife.Actions.GoHereAction.yml",
|
||||
"TinyLife.Actions.GoHereAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.GoHereAction.yml",
|
||||
"TinyLife.Actions.GoHereAction.CanCancel(TinyLife.Actions.Action)": "TinyLife.Actions.GoHereAction.yml",
|
||||
"TinyLife.Actions.GoHereAction.CreateFirstActions": "TinyLife.Actions.GoHereAction.yml",
|
||||
"TinyLife.Actions.GoHereAction.DriveSpeedMultiplier": "TinyLife.Actions.GoHereAction.yml",
|
||||
|
|
|
@ -7,6 +7,7 @@ items:
|
|||
children:
|
||||
- TinyLife.Actions.GoHereAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.GoHereAction.AndThenIsCompleted
|
||||
- TinyLife.Actions.GoHereAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.GoHereAction.CanCancel(TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.GoHereAction.CreateFirstActions
|
||||
- TinyLife.Actions.GoHereAction.DriveSpeedMultiplier
|
||||
|
@ -52,7 +53,6 @@ items:
|
|||
- TinyLife.Actions.MultiAction.CreateLastActions
|
||||
- TinyLife.Actions.MultiAction.AndThenInitialize
|
||||
- TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
- TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.MultiAction.PreInitialize
|
||||
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
|
@ -323,6 +323,42 @@ items:
|
|||
content.vb: Protected Overrides Function AndThenIsCompleted() As CompletionType
|
||||
overridden: TinyLife.Actions.MultiAction.AndThenIsCompleted
|
||||
overload: TinyLife.Actions.GoHereAction.AndThenIsCompleted*
|
||||
- uid: TinyLife.Actions.GoHereAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
commentId: M:TinyLife.Actions.GoHereAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
id: AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
parent: TinyLife.Actions.GoHereAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: AndThenOnCompleted(CompletionType)
|
||||
nameWithType: GoHereAction.AndThenOnCompleted(CompletionType)
|
||||
fullName: TinyLife.Actions.GoHereAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/GoHereAction.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenOnCompleted
|
||||
path: ../TinyLife/Actions/GoHereAction.cs
|
||||
startLine: 92
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: >-
|
||||
MultiAction version of <xref href="TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType)" data-throw-if-not-resolved="false"></xref>.
|
||||
|
||||
This method gets called when the main action completes.
|
||||
example: []
|
||||
syntax:
|
||||
content: protected override void AndThenOnCompleted(CompletionType type)
|
||||
parameters:
|
||||
- id: type
|
||||
type: TinyLife.Actions.CompletionType
|
||||
description: The completion of the main action
|
||||
content.vb: Protected Overrides Sub AndThenOnCompleted(type As CompletionType)
|
||||
overridden: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
overload: TinyLife.Actions.GoHereAction.AndThenOnCompleted*
|
||||
- uid: TinyLife.Actions.GoHereAction.CanCancel(TinyLife.Actions.Action)
|
||||
commentId: M:TinyLife.Actions.GoHereAction.CanCancel(TinyLife.Actions.Action)
|
||||
id: CanCancel(TinyLife.Actions.Action)
|
||||
|
@ -341,7 +377,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCancel
|
||||
path: ../TinyLife/Actions/GoHereAction.cs
|
||||
startLine: 93
|
||||
startLine: 101
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -551,31 +587,6 @@ references:
|
|||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
parent: TinyLife.Actions.MultiAction
|
||||
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
name: AndThenOnCompleted(CompletionType)
|
||||
nameWithType: MultiAction.AndThenOnCompleted(CompletionType)
|
||||
fullName: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: AndThenOnCompleted
|
||||
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
href: TinyLife.Actions.CompletionType.html
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: AndThenOnCompleted
|
||||
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
href: TinyLife.Actions.CompletionType.html
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.MultiAction.PreInitialize
|
||||
commentId: M:TinyLife.Actions.MultiAction.PreInitialize
|
||||
parent: TinyLife.Actions.MultiAction
|
||||
|
@ -4260,6 +4271,37 @@ references:
|
|||
name: CompletionType
|
||||
nameWithType: CompletionType
|
||||
fullName: TinyLife.Actions.CompletionType
|
||||
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
parent: TinyLife.Actions.MultiAction
|
||||
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
name: AndThenOnCompleted(CompletionType)
|
||||
nameWithType: MultiAction.AndThenOnCompleted(CompletionType)
|
||||
fullName: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: AndThenOnCompleted
|
||||
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
href: TinyLife.Actions.CompletionType.html
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: AndThenOnCompleted
|
||||
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
href: TinyLife.Actions.CompletionType.html
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.GoHereAction.AndThenOnCompleted*
|
||||
commentId: Overload:TinyLife.Actions.GoHereAction.AndThenOnCompleted
|
||||
href: TinyLife.Actions.GoHereAction.html#TinyLife_Actions_GoHereAction_AndThenOnCompleted_TinyLife_Actions_CompletionType_
|
||||
name: AndThenOnCompleted
|
||||
nameWithType: GoHereAction.AndThenOnCompleted
|
||||
fullName: TinyLife.Actions.GoHereAction.AndThenOnCompleted
|
||||
- uid: TinyLife.Actions.MultiAction.CanCancel(TinyLife.Actions.Action)
|
||||
commentId: M:TinyLife.Actions.MultiAction.CanCancel(TinyLife.Actions.Action)
|
||||
parent: TinyLife.Actions.MultiAction
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AgeGroup
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3626
|
||||
startLine: 3628
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -67,7 +67,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Baby
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3633
|
||||
startLine: 3635
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -95,7 +95,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3639
|
||||
startLine: 3641
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -123,7 +123,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Adult
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3645
|
||||
startLine: 3647
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -24,7 +24,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DeathReason
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3594
|
||||
startLine: 3596
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -53,7 +53,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Starvation
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3600
|
||||
startLine: 3602
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -84,7 +84,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InexplicableReasons
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3605
|
||||
startLine: 3607
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -115,7 +115,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Electrocution
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3610
|
||||
startLine: 3612
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -146,7 +146,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TooMuchProtein
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3614
|
||||
startLine: 3616
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -174,7 +174,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TooMuchBrew
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3618
|
||||
startLine: 3620
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -25,7 +25,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LifeSpan
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3653
|
||||
startLine: 3655
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -59,7 +59,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryShort
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3656
|
||||
startLine: 3658
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -85,7 +85,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Short
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3657
|
||||
startLine: 3659
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -111,7 +111,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Normal
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3658
|
||||
startLine: 3660
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -137,7 +137,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Long
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3659
|
||||
startLine: 3661
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -163,7 +163,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryLong
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3660
|
||||
startLine: 3662
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -189,7 +189,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Infinite
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3661
|
||||
startLine: 3663
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EfficiencyModifierDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3458
|
||||
startLine: 3460
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EmotionModifiersChangedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3483
|
||||
startLine: 3485
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassiveActionPriorityDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3473
|
||||
startLine: 3475
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RelationshipChangeDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3488
|
||||
startLine: 3490
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RestoreNeedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3478
|
||||
startLine: 3480
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SkillBoostDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3463
|
||||
startLine: 3465
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WalkSpeedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3468
|
||||
startLine: 3470
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -7125,7 +7125,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetAction
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2606
|
||||
startLine: 2607
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7169,7 +7169,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetPregnancyStatus
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2626
|
||||
startLine: 2627
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7210,7 +7210,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetAnimationsFromLooks
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2646
|
||||
startLine: 2647
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7238,7 +7238,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ImportAtExitRoad
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2658
|
||||
startLine: 2659
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7270,7 +7270,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GoToRandomHomeLocation
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2670
|
||||
startLine: 2671
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7301,7 +7301,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ShouldDrawHeldItem
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2691
|
||||
startLine: 2693
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7332,7 +7332,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetHeldItemDrawOffset
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2702
|
||||
startLine: 2704
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7369,7 +7369,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetHeldItemDepthOffset
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2730
|
||||
startLine: 2732
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7400,7 +7400,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPivot
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2741
|
||||
startLine: 2743
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7431,7 +7431,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanExecuteAction
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2753
|
||||
startLine: 2755
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7478,7 +7478,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetValidClothes
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2810
|
||||
startLine: 2812
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7513,7 +7513,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanApplyPersonality
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2822
|
||||
startLine: 2824
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7550,7 +7550,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HasRecentlyFailed
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2835
|
||||
startLine: 2837
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7594,7 +7594,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MoveToMapExitRoad
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2846
|
||||
startLine: 2848
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7632,7 +7632,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GenerateAnimationGroup
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2863
|
||||
startLine: 2865
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7679,7 +7679,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawLooks
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2901
|
||||
startLine: 2903
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7732,7 +7732,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateAnimations
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2924
|
||||
startLine: 2926
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7770,7 +7770,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnActionCompleted
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 2943
|
||||
startLine: 2945
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7808,7 +7808,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateAction
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3020
|
||||
startLine: 3022
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7855,7 +7855,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InitializeAction
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3033
|
||||
startLine: 3035
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7887,7 +7887,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnAgeChanged
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3043
|
||||
startLine: 3045
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7919,7 +7919,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ValidateClothes
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3129
|
||||
startLine: 3131
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7950,7 +7950,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRandomSpeakSound
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3281
|
||||
startLine: 3283
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -7997,7 +7997,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Create
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3309
|
||||
startLine: 3311
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -8056,7 +8056,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawUi
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3394
|
||||
startLine: 3396
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pose
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3540
|
||||
startLine: 3542
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -60,7 +60,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Standing
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3545
|
||||
startLine: 3547
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -88,7 +88,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Walking
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3549
|
||||
startLine: 3551
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -116,7 +116,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sitting
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3553
|
||||
startLine: 3555
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -144,7 +144,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Laying
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3558
|
||||
startLine: 3560
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -175,7 +175,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SittingGround
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3563
|
||||
startLine: 3565
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -206,7 +206,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingStanding
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3567
|
||||
startLine: 3569
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -234,7 +234,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingSitting
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3571
|
||||
startLine: 3573
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -262,7 +262,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingSittingGround
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3575
|
||||
startLine: 3577
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -290,7 +290,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Running
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3579
|
||||
startLine: 3581
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -318,7 +318,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StandingArmsOut
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3583
|
||||
startLine: 3585
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -346,7 +346,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WalkingArmsOut
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3587
|
||||
startLine: 3589
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PregnancyAbility
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3715
|
||||
startLine: 3717
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -52,7 +52,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neither
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3720
|
||||
startLine: 3722
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -80,7 +80,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetOthersPregnant
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3724
|
||||
startLine: 3726
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPregnant
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3728
|
||||
startLine: 3730
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -35,7 +35,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SpeakStyle
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3671
|
||||
startLine: 3673
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -79,7 +79,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Affirmative
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3675
|
||||
startLine: 3677
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -105,7 +105,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Angry
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3676
|
||||
startLine: 3678
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -131,7 +131,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Annoyed
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3677
|
||||
startLine: 3679
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -157,7 +157,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Bored
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3678
|
||||
startLine: 3680
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -183,7 +183,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Childish
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3679
|
||||
startLine: 3681
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -209,7 +209,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Confident
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3680
|
||||
startLine: 3682
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -235,7 +235,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Confused
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3681
|
||||
startLine: 3683
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -261,7 +261,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Disagreeing
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3682
|
||||
startLine: 3684
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -287,7 +287,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Excited
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3683
|
||||
startLine: 3685
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -313,7 +313,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Happy
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3684
|
||||
startLine: 3686
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -339,7 +339,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neutral
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3685
|
||||
startLine: 3687
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -365,7 +365,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Questioning
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3686
|
||||
startLine: 3688
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -391,7 +391,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sad
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3687
|
||||
startLine: 3689
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -417,7 +417,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Scared
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3688
|
||||
startLine: 3690
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -443,7 +443,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shocked
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3689
|
||||
startLine: 3691
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -469,7 +469,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Thinking
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3690
|
||||
startLine: 3692
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VoiceStyle
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3699
|
||||
startLine: 3701
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -56,7 +56,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Low
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3702
|
||||
startLine: 3704
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -82,7 +82,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: High
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3703
|
||||
startLine: 3705
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3704
|
||||
startLine: 3706
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -134,7 +134,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Baby
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3706
|
||||
startLine: 3708
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
Loading…
Reference in a new issue