This commit is contained in:
Ell 2024-07-14 18:39:11 +02:00
parent 1e2aa856b0
commit 5a9469cfbf
22 changed files with 170 additions and 128 deletions

View file

@ -1,3 +1,10 @@
# 0.43.4
*July 14, 2024*
Fixes
- Fixed a crash when babies try to age up
- Fixed being unable to copy saves to Steam cloud since 0.43.0
# 0.43.3
*July 14, 2024*

View file

@ -2665,6 +2665,7 @@
"TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.UpdateAdditionalVisuals": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.UpdateJobs(System.TimeSpan)": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.UpdatePose": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.Validate": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.PersonAi": "TinyLife.Objects.PersonAi.yml",
"TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean,System.Boolean,TinyLife.Actions.ActionArgument[])": "TinyLife.Objects.PersonAi.yml",

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AgeGroup
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3516
startLine: 3518
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -67,7 +67,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Baby
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3523
startLine: 3525
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -95,7 +95,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Child
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3529
startLine: 3531
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -123,7 +123,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Adult
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3535
startLine: 3537
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DeathReason
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3467
startLine: 3469
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -53,7 +53,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Starvation
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3473
startLine: 3475
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -84,7 +84,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InexplicableReasons
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3478
startLine: 3480
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -115,7 +115,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Electrocution
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3483
startLine: 3485
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -146,7 +146,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TooMuchProtein
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3487
startLine: 3489
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -174,7 +174,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TooMuchBrew
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3491
startLine: 3493
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -25,7 +25,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LifeSpan
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3499
startLine: 3501
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -59,7 +59,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VeryShort
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3502
startLine: 3504
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -85,7 +85,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Short
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3503
startLine: 3505
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -111,7 +111,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Normal
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3504
startLine: 3506
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -137,7 +137,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Long
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3505
startLine: 3507
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -163,7 +163,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VeryLong
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3506
startLine: 3508
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -189,7 +189,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Infinite
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3507
startLine: 3509
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -48,6 +48,7 @@ items:
- TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Objects.Person.UpdateAdditionalVisuals
- TinyLife.Objects.Person.UpdateJobs(System.TimeSpan)
- TinyLife.Objects.Person.UpdatePose
- TinyLife.Objects.Person.Validate
langs:
- csharp
@ -255,7 +256,6 @@ items:
- TinyLife.Objects.PersonLike.UpdateAnimations(System.TimeSpan,System.Single)
- TinyLife.Objects.PersonLike.UpdateSpeech(Microsoft.Xna.Framework.GameTime,System.Single)
- TinyLife.Objects.PersonLike.UpdateEmotes(Microsoft.Xna.Framework.GameTime,System.Single)
- TinyLife.Objects.PersonLike.UpdatePose
- TinyLife.Objects.PersonLike.UpdateRelationships(System.Single)
- TinyLife.Objects.PersonLike.UpdateEmotions(Microsoft.Xna.Framework.GameTime,System.TimeSpan)
- TinyLife.Objects.PersonLike.UpdatePregnancy(System.TimeSpan)
@ -1044,6 +1044,34 @@ items:
nameWithType.vb: Person.Update(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: Update(GameTime, TimeSpan, Single)
- uid: TinyLife.Objects.Person.UpdatePose
commentId: M:TinyLife.Objects.Person.UpdatePose
id: UpdatePose
parent: TinyLife.Objects.Person
langs:
- csharp
- vb
name: UpdatePose()
nameWithType: Person.UpdatePose()
fullName: TinyLife.Objects.Person.UpdatePose()
type: Method
source:
remote:
path: TinyLife/Objects/Person.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdatePose
path: ../TinyLife/Objects/Person.cs
startLine: 147
assemblies:
- Tiny Life
namespace: TinyLife.Objects
example: []
syntax:
content: protected override void UpdatePose()
content.vb: Protected Overrides Sub UpdatePose()
overridden: TinyLife.Objects.PersonLike.UpdatePose
overload: TinyLife.Objects.Person.UpdatePose*
- uid: TinyLife.Objects.Person.UpdateAdditionalVisuals
commentId: M:TinyLife.Objects.Person.UpdateAdditionalVisuals
id: UpdateAdditionalVisuals
@ -1062,7 +1090,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateAdditionalVisuals
path: ../TinyLife/Objects/Person.cs
startLine: 146
startLine: 153
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1088,7 +1116,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateJobs
path: ../TinyLife/Objects/Person.cs
startLine: 182
startLine: 189
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1117,7 +1145,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanExecuteAction
path: ../TinyLife/Objects/Person.cs
startLine: 188
startLine: 195
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1165,7 +1193,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPassiveActionPriority
path: ../TinyLife/Objects/Person.cs
startLine: 195
startLine: 202
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1206,7 +1234,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetAiPriorityForObject
path: ../TinyLife/Objects/Person.cs
startLine: 206
startLine: 213
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1248,7 +1276,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ResetToStatic
path: ../TinyLife/Objects/Person.cs
startLine: 217
startLine: 224
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1290,7 +1318,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GenerateAnimationGroup
path: ../TinyLife/Objects/Person.cs
startLine: 238
startLine: 245
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1338,7 +1366,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawLooksLayer
path: ../TinyLife/Objects/Person.cs
startLine: 276
startLine: 283
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1394,7 +1422,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHeldItemDrawOffset
path: ../TinyLife/Objects/Person.cs
startLine: 292
startLine: 299
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1432,7 +1460,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPivot
path: ../TinyLife/Objects/Person.cs
startLine: 320
startLine: 324
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1464,7 +1492,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnRoomCheck
path: ../TinyLife/Objects/Person.cs
startLine: 325
startLine: 329
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1496,7 +1524,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate
path: ../TinyLife/Objects/Person.cs
startLine: 331
startLine: 335
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1533,7 +1561,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHoverInfo
path: ../TinyLife/Objects/Person.cs
startLine: 365
startLine: 369
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1569,7 +1597,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnAgeChanged
path: ../TinyLife/Objects/Person.cs
startLine: 377
startLine: 381
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1602,7 +1630,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GoToExitRoad
path: ../TinyLife/Objects/Person.cs
startLine: 402
startLine: 406
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1634,7 +1662,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCurrentGoals
path: ../TinyLife/Objects/Person.cs
startLine: 408
startLine: 412
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1669,7 +1697,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawUi
path: ../TinyLife/Objects/Person.cs
startLine: 420
startLine: 424
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1720,7 +1748,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPassiveNeedReduction
path: ../TinyLife/Objects/Person.cs
startLine: 460
startLine: 462
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1759,7 +1787,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetProjects
path: ../TinyLife/Objects/Person.cs
startLine: 484
startLine: 486
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1800,7 +1828,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetProject
path: ../TinyLife/Objects/Person.cs
startLine: 494
startLine: 496
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1841,7 +1869,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StartProject
path: ../TinyLife/Objects/Person.cs
startLine: 503
startLine: 505
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1876,7 +1904,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetJob
path: ../TinyLife/Objects/Person.cs
startLine: 514
startLine: 516
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1929,7 +1957,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddJob
path: ../TinyLife/Objects/Person.cs
startLine: 528
startLine: 530
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -1970,7 +1998,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveJob
path: ../TinyLife/Objects/Person.cs
startLine: 545
startLine: 547
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -2005,7 +2033,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Create
path: ../TinyLife/Objects/Person.cs
startLine: 580
startLine: 582
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -6373,25 +6401,6 @@ references:
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- uid: TinyLife.Objects.PersonLike.UpdatePose
commentId: M:TinyLife.Objects.PersonLike.UpdatePose
parent: TinyLife.Objects.PersonLike
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_UpdatePose
name: UpdatePose()
nameWithType: PersonLike.UpdatePose()
fullName: TinyLife.Objects.PersonLike.UpdatePose()
spec.csharp:
- uid: TinyLife.Objects.PersonLike.UpdatePose
name: UpdatePose
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_UpdatePose
- name: (
- name: )
spec.vb:
- uid: TinyLife.Objects.PersonLike.UpdatePose
name: UpdatePose
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_UpdatePose
- name: (
- name: )
- uid: TinyLife.Objects.PersonLike.UpdateRelationships(System.Single)
commentId: M:TinyLife.Objects.PersonLike.UpdateRelationships(System.Single)
parent: TinyLife.Objects.PersonLike
@ -10321,6 +10330,31 @@ references:
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: TinyLife.Objects.PersonLike.UpdatePose
commentId: M:TinyLife.Objects.PersonLike.UpdatePose
parent: TinyLife.Objects.PersonLike
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_UpdatePose
name: UpdatePose()
nameWithType: PersonLike.UpdatePose()
fullName: TinyLife.Objects.PersonLike.UpdatePose()
spec.csharp:
- uid: TinyLife.Objects.PersonLike.UpdatePose
name: UpdatePose
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_UpdatePose
- name: (
- name: )
spec.vb:
- uid: TinyLife.Objects.PersonLike.UpdatePose
name: UpdatePose
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_UpdatePose
- name: (
- name: )
- uid: TinyLife.Objects.Person.UpdatePose*
commentId: Overload:TinyLife.Objects.Person.UpdatePose
href: TinyLife.Objects.Person.html#TinyLife_Objects_Person_UpdatePose
name: UpdatePose
nameWithType: Person.UpdatePose
fullName: TinyLife.Objects.Person.UpdatePose
- uid: TinyLife.Objects.Person.UpdateAdditionalVisuals*
commentId: Overload:TinyLife.Objects.Person.UpdateAdditionalVisuals
href: TinyLife.Objects.Person.html#TinyLife_Objects_Person_UpdateAdditionalVisuals

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddEmotionDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3356
startLine: 3358
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiPriorityForObjectDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3336
startLine: 3338
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EfficiencyModifierDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3316
startLine: 3318
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmotionModifiersChangedDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3346
startLine: 3348
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PassiveActionPriorityDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3331
startLine: 3333
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PassiveReductionDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3361
startLine: 3363
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RelationshipChangeDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3351
startLine: 3353
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RestoreNeedDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3341
startLine: 3343
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SkillBoostDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3321
startLine: 3323
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WalkSpeedDelegate
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3326
startLine: 3328
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -7747,7 +7747,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdatePregnancy
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2772
startLine: 2773
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7776,7 +7776,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnNewDay
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2801
startLine: 2803
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7802,7 +7802,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateMemories
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2816
startLine: 2818
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7838,7 +7838,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateNeeds
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2821
startLine: 2823
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7872,7 +7872,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateActions
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2836
startLine: 2838
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7908,7 +7908,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ResetVisuals
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2896
startLine: 2898
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7934,7 +7934,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnActionCompleted
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2921
startLine: 2923
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -7972,7 +7972,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateAction
path: ../TinyLife/Objects/PersonLike.cs
startLine: 2998
startLine: 3000
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -8019,7 +8019,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InitializeAction
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3011
startLine: 3013
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -8051,7 +8051,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnAgeChanged
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3021
startLine: 3023
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -8083,7 +8083,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPassiveNeedReduction
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3089
startLine: 3091
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -8121,7 +8121,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRandomSpeakSound
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3256
startLine: 3258
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -30,7 +30,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Pose
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3413
startLine: 3415
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -60,7 +60,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Standing
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3418
startLine: 3420
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -88,7 +88,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Walking
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3422
startLine: 3424
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -116,7 +116,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sitting
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3426
startLine: 3428
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -144,7 +144,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Laying
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3431
startLine: 3433
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -175,7 +175,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SittingGround
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3436
startLine: 3438
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -206,7 +206,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkingStanding
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3440
startLine: 3442
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -234,7 +234,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkingSitting
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3444
startLine: 3446
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -262,7 +262,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkingSittingGround
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3448
startLine: 3450
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -290,7 +290,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Running
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3452
startLine: 3454
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -318,7 +318,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StandingArmsOut
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3456
startLine: 3458
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -346,7 +346,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WalkingArmsOut
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3460
startLine: 3462
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PregnancyAbility
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3589
startLine: 3591
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -52,7 +52,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Neither
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3594
startLine: 3596
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -80,7 +80,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetOthersPregnant
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3598
startLine: 3600
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -108,7 +108,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPregnant
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3602
startLine: 3604
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -35,7 +35,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SpeakStyle
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3544
startLine: 3546
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -79,7 +79,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Affirmative
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3548
startLine: 3550
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -105,7 +105,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Angry
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3549
startLine: 3551
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -131,7 +131,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Annoyed
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3550
startLine: 3552
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -157,7 +157,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Bored
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3551
startLine: 3553
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -183,7 +183,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Childish
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3552
startLine: 3554
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -209,7 +209,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Confident
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3553
startLine: 3555
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -235,7 +235,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Confused
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3554
startLine: 3556
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -261,7 +261,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Disagreeing
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3555
startLine: 3557
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -287,7 +287,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Excited
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3556
startLine: 3558
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -313,7 +313,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Happy
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3557
startLine: 3559
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -339,7 +339,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Neutral
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3558
startLine: 3560
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -365,7 +365,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Questioning
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3559
startLine: 3561
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -391,7 +391,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sad
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3560
startLine: 3562
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -417,7 +417,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Scared
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3561
startLine: 3563
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -443,7 +443,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Shocked
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3562
startLine: 3564
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -469,7 +469,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Thinking
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3563
startLine: 3565
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VoiceStyle
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3572
startLine: 3574
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -57,7 +57,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Low
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3575
startLine: 3577
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -83,7 +83,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: High
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3576
startLine: 3578
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -109,7 +109,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Child
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3577
startLine: 3579
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -135,7 +135,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Baby
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3579
startLine: 3581
assemblies:
- Tiny Life
namespace: TinyLife.Objects
@ -161,7 +161,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MidHigh
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3581
startLine: 3583
assemblies:
- Tiny Life
namespace: TinyLife.Objects

View file

@ -23,7 +23,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SaveData
path: ../TinyLife/SaveHandler.cs
startLine: 380
startLine: 383
assemblies:
- Tiny Life
namespace: TinyLife
@ -72,7 +72,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Maps
path: ../TinyLife/SaveHandler.cs
startLine: 385
startLine: 388
assemblies:
- Tiny Life
namespace: TinyLife
@ -103,7 +103,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Time
path: ../TinyLife/SaveHandler.cs
startLine: 389
startLine: 392
assemblies:
- Tiny Life
namespace: TinyLife
@ -134,7 +134,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Achievements
path: ../TinyLife/SaveHandler.cs
startLine: 394
startLine: 397
assemblies:
- Tiny Life
namespace: TinyLife
@ -165,7 +165,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Map
path: ../TinyLife/SaveHandler.cs
startLine: 400
startLine: 403
assemblies:
- Tiny Life
namespace: TinyLife