mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 11:23:29 +01:00
0.30.1
This commit is contained in:
parent
d342f6df65
commit
dd4c5431a6
16 changed files with 284 additions and 244 deletions
11
Changelog.md
11
Changelog.md
|
@ -1,3 +1,14 @@
|
||||||
|
# 0.30.1
|
||||||
|
*April 2, 2023*
|
||||||
|
|
||||||
|
Additions
|
||||||
|
- Added shadows to Tinies (which were the only objects that didn't have any)
|
||||||
|
- Added the ability to order tea at cafés
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
- Fixed Tinies not sitting down properly while watching TV
|
||||||
|
- Fixed Linux and Mac builds crashing due to a localization file name inconsistency
|
||||||
|
|
||||||
# 0.30.0
|
# 0.30.0
|
||||||
*March 31, 2023*
|
*March 31, 2023*
|
||||||
|
|
||||||
|
|
|
@ -265,6 +265,7 @@
|
||||||
"TinyLife.Actions.ActionType.MoveHere": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.MoveHere": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.OrderCafeFood": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.OrderCafeFood": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.OrderCoffee": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.OrderCoffee": "TinyLife.Actions.ActionType.yml",
|
||||||
|
"TinyLife.Actions.ActionType.OrderTea": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.Paint": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.Paint": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.PassOut": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.PassOut": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.PayBills": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.PayBills": "TinyLife.Actions.ActionType.yml",
|
||||||
|
|
|
@ -178,6 +178,7 @@ items:
|
||||||
- TinyLife.Actions.ActionType.MoveHere
|
- TinyLife.Actions.ActionType.MoveHere
|
||||||
- TinyLife.Actions.ActionType.OrderCafeFood
|
- TinyLife.Actions.ActionType.OrderCafeFood
|
||||||
- TinyLife.Actions.ActionType.OrderCoffee
|
- TinyLife.Actions.ActionType.OrderCoffee
|
||||||
|
- TinyLife.Actions.ActionType.OrderTea
|
||||||
- TinyLife.Actions.ActionType.Paint
|
- TinyLife.Actions.ActionType.Paint
|
||||||
- TinyLife.Actions.ActionType.PassOut
|
- TinyLife.Actions.ActionType.PassOut
|
||||||
- TinyLife.Actions.ActionType.PayBills
|
- TinyLife.Actions.ActionType.PayBills
|
||||||
|
@ -4625,6 +4626,33 @@ items:
|
||||||
return:
|
return:
|
||||||
type: TinyLife.Actions.ActionType
|
type: TinyLife.Actions.ActionType
|
||||||
content.vb: Public Shared ReadOnly OrderCoffee As ActionType
|
content.vb: Public Shared ReadOnly OrderCoffee As ActionType
|
||||||
|
- uid: TinyLife.Actions.ActionType.OrderTea
|
||||||
|
commentId: F:TinyLife.Actions.ActionType.OrderTea
|
||||||
|
id: OrderTea
|
||||||
|
parent: TinyLife.Actions.ActionType
|
||||||
|
langs:
|
||||||
|
- csharp
|
||||||
|
- vb
|
||||||
|
name: OrderTea
|
||||||
|
nameWithType: ActionType.OrderTea
|
||||||
|
fullName: TinyLife.Actions.ActionType.OrderTea
|
||||||
|
type: Field
|
||||||
|
source:
|
||||||
|
remote:
|
||||||
|
path: TinyLife/Actions/ActionType.Social.cs
|
||||||
|
branch: main
|
||||||
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
|
id: OrderTea
|
||||||
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
|
startLine: 152
|
||||||
|
assemblies:
|
||||||
|
- Tiny Life
|
||||||
|
namespace: TinyLife.Actions
|
||||||
|
syntax:
|
||||||
|
content: public static readonly ActionType OrderTea
|
||||||
|
return:
|
||||||
|
type: TinyLife.Actions.ActionType
|
||||||
|
content.vb: Public Shared ReadOnly OrderTea As ActionType
|
||||||
- uid: TinyLife.Actions.ActionType.OrderCafeFood
|
- uid: TinyLife.Actions.ActionType.OrderCafeFood
|
||||||
commentId: F:TinyLife.Actions.ActionType.OrderCafeFood
|
commentId: F:TinyLife.Actions.ActionType.OrderCafeFood
|
||||||
id: OrderCafeFood
|
id: OrderCafeFood
|
||||||
|
@ -4643,7 +4671,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OrderCafeFood
|
id: OrderCafeFood
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 152
|
startLine: 163
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4670,7 +4698,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskAboutNonfictionBooks
|
id: AskAboutNonfictionBooks
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 161
|
startLine: 172
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4697,7 +4725,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskAboutFictionBooks
|
id: AskAboutFictionBooks
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 173
|
startLine: 184
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4724,7 +4752,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PickUpPerson
|
id: PickUpPerson
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 185
|
startLine: 196
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4751,7 +4779,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PutDownPerson
|
id: PutDownPerson
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 195
|
startLine: 206
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4778,7 +4806,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HomeworkHelp
|
id: HomeworkHelp
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 205
|
startLine: 216
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4805,7 +4833,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Talk
|
id: Talk
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 215
|
startLine: 226
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4832,7 +4860,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskAboutDay
|
id: AskAboutDay
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 219
|
startLine: 230
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4859,7 +4887,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellEngagingStory
|
id: TellEngagingStory
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 223
|
startLine: 234
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4886,7 +4914,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellStory
|
id: TellStory
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 228
|
startLine: 239
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4913,7 +4941,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutWork
|
id: TalkAboutWork
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 232
|
startLine: 243
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4940,7 +4968,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutNeighborhood
|
id: TalkAboutNeighborhood
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 238
|
startLine: 249
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4967,7 +4995,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutOutdoors
|
id: TalkAboutOutdoors
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 243
|
startLine: 254
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -4994,7 +5022,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutFood
|
id: TalkAboutFood
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 247
|
startLine: 258
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5021,7 +5049,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DiscussWorkoutRegimen
|
id: DiscussWorkoutRegimen
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 251
|
startLine: 262
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5048,7 +5076,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CompareMuscleSize
|
id: CompareMuscleSize
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 258
|
startLine: 269
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5075,7 +5103,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GushAboutPartner
|
id: GushAboutPartner
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 265
|
startLine: 276
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5102,7 +5130,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskAboutGamingRig
|
id: AskAboutGamingRig
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 271
|
startLine: 282
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5129,7 +5157,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskAboutComputerSpecs
|
id: AskAboutComputerSpecs
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 276
|
startLine: 287
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5156,7 +5184,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BoastAboutPagesWritten
|
id: BoastAboutPagesWritten
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 281
|
startLine: 292
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5183,7 +5211,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PoseMathPuzzle
|
id: PoseMathPuzzle
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 287
|
startLine: 298
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5210,7 +5238,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ExpressFearOfCrowds
|
id: ExpressFearOfCrowds
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 292
|
startLine: 303
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5237,7 +5265,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutNaps
|
id: TalkAboutNaps
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 297
|
startLine: 308
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5264,7 +5292,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutWatchingTv
|
id: TalkAboutWatchingTv
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 303
|
startLine: 314
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5291,7 +5319,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InviteToHousehold
|
id: InviteToHousehold
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 308
|
startLine: 319
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5318,7 +5346,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskToCook
|
id: AskToCook
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 313
|
startLine: 324
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5345,7 +5373,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskToTellStory
|
id: AskToTellStory
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 320
|
startLine: 331
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5372,7 +5400,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ComplainAboutAdults
|
id: ComplainAboutAdults
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 326
|
startLine: 337
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5399,7 +5427,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ComplainAboutParent
|
id: ComplainAboutParent
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 331
|
startLine: 342
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5426,7 +5454,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutCartoons
|
id: TalkAboutCartoons
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 336
|
startLine: 347
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5453,7 +5481,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutSchool
|
id: TalkAboutSchool
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 341
|
startLine: 352
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5480,7 +5508,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutFavoriteToys
|
id: TalkAboutFavoriteToys
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 346
|
startLine: 357
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5507,7 +5535,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskAboutFamilyWellbeing
|
id: AskAboutFamilyWellbeing
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 351
|
startLine: 362
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5534,7 +5562,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutFamily
|
id: TalkAboutFamily
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 357
|
startLine: 368
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5561,7 +5589,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DebatePineappleOnPizza
|
id: DebatePineappleOnPizza
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 363
|
startLine: 374
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5588,7 +5616,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DiscussFineDining
|
id: DiscussFineDining
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 369
|
startLine: 380
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5615,7 +5643,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutSpicyFood
|
id: TalkAboutSpicyFood
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 374
|
startLine: 385
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5642,7 +5670,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskMedicalHistory
|
id: AskMedicalHistory
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 379
|
startLine: 390
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5669,7 +5697,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutNatureWalks
|
id: TalkAboutNatureWalks
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 384
|
startLine: 395
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5696,7 +5724,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CriticizeDeforestation
|
id: CriticizeDeforestation
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 389
|
startLine: 400
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5723,7 +5751,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DiscussNpP
|
id: DiscussNpP
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 394
|
startLine: 405
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5750,7 +5778,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BragAboutComputer
|
id: BragAboutComputer
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 399
|
startLine: 410
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5777,7 +5805,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DiscussHomeAutomation
|
id: DiscussHomeAutomation
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 404
|
startLine: 415
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5804,7 +5832,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskIfSingle
|
id: AskIfSingle
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 409
|
startLine: 420
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5831,7 +5859,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SuggestThriftstores
|
id: SuggestThriftstores
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 420
|
startLine: 431
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5858,7 +5886,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EnthuseAboutCoupons
|
id: EnthuseAboutCoupons
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 425
|
startLine: 436
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5885,7 +5913,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutBestSpots
|
id: TalkAboutBestSpots
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 430
|
startLine: 441
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5912,7 +5940,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellJoke
|
id: TellJoke
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 437
|
startLine: 448
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5939,7 +5967,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellFunnyStory
|
id: TellFunnyStory
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 441
|
startLine: 452
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5966,7 +5994,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellRidiculousStory
|
id: TellRidiculousStory
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 445
|
startLine: 456
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -5993,7 +6021,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellComplexJoke
|
id: TellComplexJoke
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 449
|
startLine: 460
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6020,7 +6048,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PlayTrick
|
id: PlayTrick
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 453
|
startLine: 464
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6047,7 +6075,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutWork
|
id: JokeAboutWork
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 457
|
startLine: 468
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6074,7 +6102,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutOwnUnemployment
|
id: JokeAboutOwnUnemployment
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 463
|
startLine: 474
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6101,7 +6129,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutTreadmillAccidents
|
id: JokeAboutTreadmillAccidents
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 469
|
startLine: 480
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6128,7 +6156,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutWritingStyle
|
id: JokeAboutWritingStyle
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 474
|
startLine: 485
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6155,7 +6183,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutAromance
|
id: JokeAboutAromance
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 479
|
startLine: 490
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6182,7 +6210,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutAsexuality
|
id: JokeAboutAsexuality
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 484
|
startLine: 495
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6209,7 +6237,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellJokeAboutSomething
|
id: TellJokeAboutSomething
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 489
|
startLine: 500
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6236,7 +6264,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellDadJoke
|
id: TellDadJoke
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 498
|
startLine: 509
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6263,7 +6291,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutFamilyGatherings
|
id: JokeAboutFamilyGatherings
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 504
|
startLine: 515
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6290,7 +6318,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutTrees
|
id: JokeAboutTrees
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 510
|
startLine: 521
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6317,7 +6345,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutSmartHome
|
id: JokeAboutSmartHome
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 515
|
startLine: 526
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6344,7 +6372,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JokeAboutOverspending
|
id: JokeAboutOverspending
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 520
|
startLine: 531
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6371,7 +6399,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutFunnyCityName
|
id: TalkAboutFunnyCityName
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 525
|
startLine: 536
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6398,7 +6426,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Insult
|
id: Insult
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 532
|
startLine: 543
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6425,7 +6453,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ImplyMotherIsCamel
|
id: ImplyMotherIsCamel
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 536
|
startLine: 547
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6452,7 +6480,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfUnemployment
|
id: MakeFunOfUnemployment
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 540
|
startLine: 551
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6479,7 +6507,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfLaziness
|
id: MakeFunOfLaziness
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 546
|
startLine: 557
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6506,7 +6534,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfIntroversion
|
id: MakeFunOfIntroversion
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 551
|
startLine: 562
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6533,7 +6561,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfNiceness
|
id: MakeFunOfNiceness
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 556
|
startLine: 567
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6560,7 +6588,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ComplainAboutRelationship
|
id: ComplainAboutRelationship
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 561
|
startLine: 572
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6587,7 +6615,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfPoorFitness
|
id: MakeFunOfPoorFitness
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 566
|
startLine: 577
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6614,7 +6642,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfFriends
|
id: MakeFunOfFriends
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 572
|
startLine: 583
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6641,7 +6669,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfBeingNerd
|
id: MakeFunOfBeingNerd
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 577
|
startLine: 588
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6668,7 +6696,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfBeingBadAtSchool
|
id: MakeFunOfBeingBadAtSchool
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 582
|
startLine: 593
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6695,7 +6723,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ShooChild
|
id: ShooChild
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 587
|
startLine: 598
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6722,7 +6750,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfFoodIntolerance
|
id: MakeFunOfFoodIntolerance
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 593
|
startLine: 604
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6749,7 +6777,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChastiseForFoodBeliefs
|
id: ChastiseForFoodBeliefs
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 599
|
startLine: 610
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6776,7 +6804,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeFunOfBeingOutdoorsy
|
id: MakeFunOfBeingOutdoorsy
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 605
|
startLine: 616
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6803,7 +6831,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ImplyHomeSmarter
|
id: ImplyHomeSmarter
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 610
|
startLine: 621
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6830,7 +6858,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Flirt
|
id: Flirt
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 617
|
startLine: 628
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6857,7 +6885,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ComplimentLooks
|
id: ComplimentLooks
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 621
|
startLine: 632
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6884,7 +6912,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeRisqueRemark
|
id: MakeRisqueRemark
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 625
|
startLine: 636
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6911,7 +6939,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BeEnticing
|
id: BeEnticing
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 631
|
startLine: 642
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6938,7 +6966,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CasualCompliment
|
id: CasualCompliment
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 636
|
startLine: 647
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6965,7 +6993,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ReciteLovePoem
|
id: ReciteLovePoem
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 641
|
startLine: 652
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -6992,7 +7020,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DeepCompliment
|
id: DeepCompliment
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 646
|
startLine: 657
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7019,7 +7047,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FlirtyJoke
|
id: FlirtyJoke
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 651
|
startLine: 662
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7046,7 +7074,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StartDating
|
id: StartDating
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 657
|
startLine: 668
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7073,7 +7101,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FoolAround
|
id: FoolAround
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 674
|
startLine: 685
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7100,7 +7128,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Kiss
|
id: Kiss
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 687
|
startLine: 698
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7127,7 +7155,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AdmitToBeingRomanticWithSomeoneElse
|
id: AdmitToBeingRomanticWithSomeoneElse
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 698
|
startLine: 709
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7154,7 +7182,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BreakUp
|
id: BreakUp
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 711
|
startLine: 722
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7181,7 +7209,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Babble
|
id: Babble
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 730
|
startLine: 741
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7208,7 +7236,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CryAt
|
id: CryAt
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 736
|
startLine: 747
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7235,7 +7263,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskWhy
|
id: AskWhy
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 742
|
startLine: 753
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7262,7 +7290,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskHow
|
id: AskHow
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 747
|
startLine: 758
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7289,7 +7317,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAboutPlaying
|
id: TalkAboutPlaying
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 752
|
startLine: 763
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7316,7 +7344,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HelpBabyBook
|
id: HelpBabyBook
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 757
|
startLine: 768
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7343,7 +7371,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HelpPotty
|
id: HelpPotty
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 770
|
startLine: 781
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7370,7 +7398,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChangeDiaper
|
id: ChangeDiaper
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 777
|
startLine: 788
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -7397,7 +7425,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskFood
|
id: AskFood
|
||||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||||
startLine: 789
|
startLine: 800
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AgeGroup
|
id: AgeGroup
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2955
|
startLine: 2967
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -63,7 +63,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Baby
|
id: Baby
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2959
|
startLine: 2971
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -89,7 +89,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Child
|
id: Child
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2965
|
startLine: 2977
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -117,7 +117,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Adult
|
id: Adult
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2971
|
startLine: 2983
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -25,7 +25,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LifeSpan
|
id: LifeSpan
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2979
|
startLine: 2991
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -55,7 +55,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: VeryShort
|
id: VeryShort
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2982
|
startLine: 2994
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -81,7 +81,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Short
|
id: Short
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2983
|
startLine: 2995
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -107,7 +107,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Normal
|
id: Normal
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2984
|
startLine: 2996
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -133,7 +133,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Long
|
id: Long
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2985
|
startLine: 2997
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -159,7 +159,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: VeryLong
|
id: VeryLong
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2986
|
startLine: 2998
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -185,7 +185,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Infinite
|
id: Infinite
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2987
|
startLine: 2999
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionUpdateDelegate
|
id: ActionUpdateDelegate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2840
|
startLine: 2852
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DeathReason
|
id: DeathReason
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2906
|
startLine: 2918
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -52,7 +52,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Starvation
|
id: Starvation
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2912
|
startLine: 2924
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -80,7 +80,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InexplicableReasons
|
id: InexplicableReasons
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2917
|
startLine: 2929
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -108,7 +108,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Electrocution
|
id: Electrocution
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2922
|
startLine: 2934
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -136,7 +136,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TooMuchProtein
|
id: TooMuchProtein
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2926
|
startLine: 2938
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EfficiencyModifierDelegate
|
id: EfficiencyModifierDelegate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2825
|
startLine: 2837
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EmotionModifiersChangedDelegate
|
id: EmotionModifiersChangedDelegate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2850
|
startLine: 2862
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PassiveActionPriorityDelegate
|
id: PassiveActionPriorityDelegate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2835
|
startLine: 2847
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -30,7 +30,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Pose
|
id: Pose
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2855
|
startLine: 2867
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -60,7 +60,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Standing
|
id: Standing
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2860
|
startLine: 2872
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -88,7 +88,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Walking
|
id: Walking
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2864
|
startLine: 2876
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -116,7 +116,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sitting
|
id: Sitting
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2868
|
startLine: 2880
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -144,7 +144,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Laying
|
id: Laying
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2873
|
startLine: 2885
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -172,7 +172,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SittingGround
|
id: SittingGround
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2878
|
startLine: 2890
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -200,7 +200,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkingStanding
|
id: WorkingStanding
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2882
|
startLine: 2894
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -228,7 +228,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkingSitting
|
id: WorkingSitting
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2886
|
startLine: 2898
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -256,7 +256,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkingSittingGround
|
id: WorkingSittingGround
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2890
|
startLine: 2902
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -284,7 +284,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Running
|
id: Running
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2894
|
startLine: 2906
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -312,7 +312,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StandingArmsOut
|
id: StandingArmsOut
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2898
|
startLine: 2910
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -340,7 +340,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WalkingArmsOut
|
id: WalkingArmsOut
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2899
|
startLine: 2911
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RestoreNeedDelegate
|
id: RestoreNeedDelegate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2845
|
startLine: 2857
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WalkSpeedDelegate
|
id: WalkSpeedDelegate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2830
|
startLine: 2842
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -2841,7 +2841,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 553
|
startLine: 554
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2879,7 +2879,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Finalize
|
id: Finalize
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 574
|
startLine: 575
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2909,7 +2909,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 579
|
startLine: 580
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2952,7 +2952,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Draw
|
id: Draw
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 864
|
startLine: 865
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2999,7 +2999,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 907
|
startLine: 908
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3031,7 +3031,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetCategories
|
id: GetCategories
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 955
|
startLine: 956
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3067,7 +3067,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Intersects
|
id: Intersects
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 960
|
startLine: 961
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3103,7 +3103,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetHoverInfo
|
id: GetHoverInfo
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 965
|
startLine: 966
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3136,7 +3136,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetFreeActionSpotInfo
|
id: GetFreeActionSpotInfo
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 986
|
startLine: 987
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3175,7 +3175,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCameraRotationChanged
|
id: OnCameraRotationChanged
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 999
|
startLine: 1000
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3211,7 +3211,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FocusCameraOnEvent
|
id: FocusCameraOnEvent
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1009
|
startLine: 1010
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3248,7 +3248,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetJob
|
id: SetJob
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1030
|
startLine: 1031
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3286,7 +3286,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ResetToStatic
|
id: ResetToStatic
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1036
|
startLine: 1037
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3322,7 +3322,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PrepareForPermanentRemoval
|
id: PrepareForPermanentRemoval
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1089
|
startLine: 1090
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3350,7 +3350,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: VisitLot
|
id: VisitLot
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1103
|
startLine: 1104
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3382,7 +3382,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DrawUi
|
id: DrawUi
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1119
|
startLine: 1120
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3426,7 +3426,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetHomeLocation
|
id: GetHomeLocation
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1127
|
startLine: 1128
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3457,7 +3457,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRelationship
|
id: GetRelationship
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1138
|
startLine: 1139
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3498,7 +3498,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChangeFriendship
|
id: ChangeFriendship
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1161
|
startLine: 1162
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3538,7 +3538,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChangeRomance
|
id: ChangeRomance
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1209
|
startLine: 1210
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3576,7 +3576,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DisplayEmote
|
id: DisplayEmote
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1234
|
startLine: 1235
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3617,7 +3617,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StopEmoting
|
id: StopEmoting
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1244
|
startLine: 1245
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3645,7 +3645,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Speak
|
id: Speak
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1255
|
startLine: 1256
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3686,7 +3686,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StopSpeaking
|
id: StopSpeaking
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1265
|
startLine: 1266
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3714,7 +3714,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DisplayEmoteAndSpeak
|
id: DisplayEmoteAndSpeak
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1282
|
startLine: 1283
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3758,7 +3758,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetFreeTalkingSpots
|
id: GetFreeTalkingSpots
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1291
|
startLine: 1292
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3792,7 +3792,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OccupyActionSpot
|
id: OccupyActionSpot
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1309
|
startLine: 1310
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3838,7 +3838,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OccupyFreeActionSpot
|
id: OccupyFreeActionSpot
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1347
|
startLine: 1348
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3886,7 +3886,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OccupyFreeActionSpot
|
id: OccupyFreeActionSpot
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1364
|
startLine: 1365
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3934,7 +3934,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCloseForTalking
|
id: IsCloseForTalking
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1375
|
startLine: 1376
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -3969,7 +3969,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNeed
|
id: GetNeed
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1387
|
startLine: 1388
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4004,7 +4004,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNeedPercentage
|
id: GetNeedPercentage
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1396
|
startLine: 1397
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4039,7 +4039,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RestoreNeed
|
id: RestoreNeed
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1408
|
startLine: 1409
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4083,7 +4083,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RestoreNeed
|
id: RestoreNeed
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1444
|
startLine: 1445
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4130,7 +4130,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSkill
|
id: GetSkill
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1455
|
startLine: 1456
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4171,7 +4171,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSkillTotalPercentage
|
id: GetSkillTotalPercentage
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1474
|
startLine: 1475
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4206,7 +4206,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSkillPointPercentage
|
id: GetSkillPointPercentage
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1484
|
startLine: 1485
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4241,7 +4241,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSkillLevel
|
id: GetSkillLevel
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1494
|
startLine: 1495
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4276,7 +4276,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasSkillLevel
|
id: HasSkillLevel
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1504
|
startLine: 1505
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4317,7 +4317,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GainSkill
|
id: GainSkill
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1516
|
startLine: 1517
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4363,7 +4363,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DepleteNeed
|
id: DepleteNeed
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1536
|
startLine: 1537
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4404,7 +4404,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasPersonality
|
id: HasPersonality
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1547
|
startLine: 1548
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4439,7 +4439,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EnqueueAction
|
id: EnqueueAction
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1561
|
startLine: 1562
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4494,7 +4494,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CancelAction
|
id: CancelAction
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1589
|
startLine: 1590
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4538,7 +4538,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindPathAsync
|
id: FindPathAsync
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1608
|
startLine: 1609
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4582,7 +4582,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetHeldObject
|
id: GetHeldObject
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1621
|
startLine: 1622
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4622,7 +4622,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetHeldObject
|
id: SetHeldObject
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1639
|
startLine: 1640
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4672,7 +4672,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetHeldObject
|
id: SetHeldObject
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1652
|
startLine: 1653
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4710,7 +4710,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RemoveHeldObject
|
id: RemoveHeldObject
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1660
|
startLine: 1661
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4743,7 +4743,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetHeldActionInfo
|
id: GetHeldActionInfo
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1674
|
startLine: 1675
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4774,7 +4774,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ToCreatedByString
|
id: ToCreatedByString
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1683
|
startLine: 1684
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4805,7 +4805,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Die
|
id: Die
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1693
|
startLine: 1694
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4843,7 +4843,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddEmotion
|
id: AddEmotion
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1790
|
startLine: 1791
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4893,7 +4893,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RemoveEmotion
|
id: RemoveEmotion
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1813
|
startLine: 1814
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4928,7 +4928,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LowerEmotion
|
id: LowerEmotion
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1834
|
startLine: 1835
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -4972,7 +4972,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LowerEmotionModifier
|
id: LowerEmotionModifier
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1853
|
startLine: 1854
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5016,7 +5016,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasEmotionModifier
|
id: HasEmotionModifier
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1869
|
startLine: 1870
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5051,7 +5051,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetWalkSpeed
|
id: GetWalkSpeed
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1878
|
startLine: 1879
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5082,7 +5082,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetEfficiencyModifier
|
id: GetEfficiencyModifier
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1911
|
startLine: 1912
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5129,7 +5129,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasHouseholdMember
|
id: HasHouseholdMember
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1965
|
startLine: 1966
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5164,7 +5164,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasHouseholdMember
|
id: HasHouseholdMember
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1970
|
startLine: 1971
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5198,7 +5198,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProjects
|
id: GetProjects
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1980
|
startLine: 1981
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5236,7 +5236,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProject
|
id: GetProject
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1990
|
startLine: 1991
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5277,7 +5277,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StartProject
|
id: StartProject
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 1999
|
startLine: 2000
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5312,7 +5312,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetPassiveActionPriority
|
id: GetPassiveActionPriority
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2011
|
startLine: 2012
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5347,7 +5347,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRandomOutfit
|
id: GetRandomOutfit
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2033
|
startLine: 2034
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5382,7 +5382,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetCurrentOutfit
|
id: SetCurrentOutfit
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2045
|
startLine: 2046
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5417,7 +5417,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetCurrentOutfit
|
id: SetCurrentOutfit
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2061
|
startLine: 2062
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5452,7 +5452,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetNewId
|
id: SetNewId
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2077
|
startLine: 2078
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5493,7 +5493,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsIdMatch
|
id: IsIdMatch
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2118
|
startLine: 2119
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5528,7 +5528,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsIdMatch
|
id: IsIdMatch
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2128
|
startLine: 2129
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5563,7 +5563,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetPersonalitySkillBoost
|
id: GetPersonalitySkillBoost
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2138
|
startLine: 2139
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5598,7 +5598,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetCurrentGoals
|
id: GetCurrentGoals
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2158
|
startLine: 2159
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5629,7 +5629,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EarnMoney
|
id: EarnMoney
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2182
|
startLine: 2183
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5667,7 +5667,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddMemory
|
id: AddMemory
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2194
|
startLine: 2195
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5713,7 +5713,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetMemories
|
id: GetMemories
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2211
|
startLine: 2212
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5753,7 +5753,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RemoveMemory
|
id: RemoveMemory
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2220
|
startLine: 2221
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5793,7 +5793,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetTimeSinceMemory
|
id: GetTimeSinceMemory
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2230
|
startLine: 2231
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5828,7 +5828,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetTimeSinceMemory
|
id: GetTimeSinceMemory
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2240
|
startLine: 2241
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5862,7 +5862,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDaysBeforeAging
|
id: GetDaysBeforeAging
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2254
|
startLine: 2255
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5893,7 +5893,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoToExitRoad
|
id: GoToExitRoad
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2262
|
startLine: 2263
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5921,7 +5921,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdatePortraitIfDirty
|
id: UpdatePortraitIfDirty
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2271
|
startLine: 2272
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5949,7 +5949,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetAction
|
id: GetAction
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2290
|
startLine: 2291
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -5987,7 +5987,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRandomSpeakSound
|
id: GetRandomSpeakSound
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2711
|
startLine: 2721
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -6034,7 +6034,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Create
|
id: Create
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2734
|
startLine: 2744
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -35,7 +35,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SpeakStyle
|
id: SpeakStyle
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 2997
|
startLine: 3009
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -74,7 +74,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Affirmative
|
id: Affirmative
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3001
|
startLine: 3013
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -100,7 +100,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Angry
|
id: Angry
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3002
|
startLine: 3014
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -126,7 +126,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Annoyed
|
id: Annoyed
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3003
|
startLine: 3015
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -152,7 +152,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Bored
|
id: Bored
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3004
|
startLine: 3016
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -178,7 +178,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Childish
|
id: Childish
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3005
|
startLine: 3017
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Confident
|
id: Confident
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3006
|
startLine: 3018
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -230,7 +230,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Confused
|
id: Confused
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3007
|
startLine: 3019
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -256,7 +256,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Disagreeing
|
id: Disagreeing
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3008
|
startLine: 3020
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -282,7 +282,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Excited
|
id: Excited
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3009
|
startLine: 3021
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -308,7 +308,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Happy
|
id: Happy
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3010
|
startLine: 3022
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -334,7 +334,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Neutral
|
id: Neutral
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3011
|
startLine: 3023
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -360,7 +360,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Questioning
|
id: Questioning
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3012
|
startLine: 3024
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -386,7 +386,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sad
|
id: Sad
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3013
|
startLine: 3025
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -412,7 +412,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Scared
|
id: Scared
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3014
|
startLine: 3026
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -438,7 +438,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Shocked
|
id: Shocked
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3015
|
startLine: 3027
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -464,7 +464,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Thinking
|
id: Thinking
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3016
|
startLine: 3028
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: VoiceStyle
|
id: VoiceStyle
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3025
|
startLine: 3037
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -52,7 +52,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Low
|
id: Low
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3028
|
startLine: 3040
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -78,7 +78,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: High
|
id: High
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3029
|
startLine: 3041
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -104,7 +104,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Child
|
id: Child
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3030
|
startLine: 3042
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -130,7 +130,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Baby
|
id: Baby
|
||||||
path: ../TinyLife/Objects/Person.cs
|
path: ../TinyLife/Objects/Person.cs
|
||||||
startLine: 3032
|
startLine: 3044
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
Loading…
Reference in a new issue