mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 03:13:30 +01:00
0.37.0-pre.2
This commit is contained in:
parent
0e289870ac
commit
f0c7b9401e
12 changed files with 142 additions and 128 deletions
14
Changelog.md
14
Changelog.md
|
@ -1,3 +1,17 @@
|
|||
# 0.37.0-pre.2
|
||||
*October 12, 2023*
|
||||
|
||||
*This is a preview version. If you want to try it out, you can find more info on [the documentation](https://docs.tinylifegame.com/articles/preview.html).*
|
||||
|
||||
Improvements
|
||||
- Display an info that the game needs to be restarted when enabling or disabling mods
|
||||
- Remove roofs that intersect with newly created rooms
|
||||
|
||||
Fixes
|
||||
- Catch any validation exceptions for map objects
|
||||
- Fixed fairy lights crashing when not on a wall
|
||||
- Fixed newly created rooms blocking stairs with tiles
|
||||
|
||||
# 0.37.0-pre.1
|
||||
*October 11, 2023*
|
||||
|
||||
|
|
|
@ -1334,11 +1334,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetMapAndValidate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 361
|
||||
startLine: 362
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nShorthand method for setting this object's <xref href=\"TinyLife.Objects.MapObject.Map\" data-throw-if-not-resolved=\"false\"></xref> and then calling <xref href=\"TinyLife.Objects.MapObject.ValidateEarly\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>.\nIf moving an already validated object to a different map is desired, <xref href=\"TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map%2cMicrosoft.Xna.Framework.Vector2%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> should be used instead.\n"
|
||||
summary: "\nShorthand method for setting this object's <xref href=\"TinyLife.Objects.MapObject.Map\" data-throw-if-not-resolved=\"false\"></xref> and then calling <xref href=\"TinyLife.Objects.MapObject.ValidateEarly\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>.\nIf an exception occurs while validating, the exception is caught and <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool\">false</a> is returned.\nIf moving an already validated object to a different map is desired, <xref href=\"TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map%2cMicrosoft.Xna.Framework.Vector2%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> should be used instead.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public bool SetMapAndValidate(Map map)
|
||||
|
@ -1369,7 +1369,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HasCategory
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 373
|
||||
startLine: 379
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1407,7 +1407,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetEfficiencyModifier
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 389
|
||||
startLine: 395
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1457,7 +1457,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRestoreNeedModifier
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 404
|
||||
startLine: 410
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1504,7 +1504,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsFreeSpot
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 415
|
||||
startLine: 421
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1539,7 +1539,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCrossBetween
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 426
|
||||
startLine: 432
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1577,7 +1577,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPathCostModifier
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 438
|
||||
startLine: 444
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1612,7 +1612,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ResetToStatic
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 448
|
||||
startLine: 454
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1653,7 +1653,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MoveToMap
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 460
|
||||
startLine: 466
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1697,7 +1697,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnPositionChanged
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 479
|
||||
startLine: 485
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1735,7 +1735,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DoDraw
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 489
|
||||
startLine: 495
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1782,7 +1782,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DoUpdate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 506
|
||||
startLine: 512
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1823,7 +1823,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawColumns
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 536
|
||||
startLine: 542
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1906,7 +1906,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetModCategory
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 601
|
||||
startLine: 607
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -100,7 +100,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ObjectCategory
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 624
|
||||
startLine: 630
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -162,7 +162,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Nothing
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 627
|
||||
startLine: 633
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -191,7 +191,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Ground
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 629
|
||||
startLine: 635
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -220,7 +220,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Chair
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 631
|
||||
startLine: 637
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -249,7 +249,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BabySittable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 633
|
||||
startLine: 639
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -278,7 +278,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Toilet
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 635
|
||||
startLine: 641
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -307,7 +307,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SingleBed
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 637
|
||||
startLine: 643
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -336,7 +336,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DoubleBed
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 639
|
||||
startLine: 645
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -365,7 +365,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Fridge
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 641
|
||||
startLine: 647
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -394,7 +394,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shower
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 643
|
||||
startLine: 649
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -423,7 +423,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Counter
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 645
|
||||
startLine: 651
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -452,7 +452,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Stove
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 647
|
||||
startLine: 653
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -481,7 +481,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Oven
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 649
|
||||
startLine: 655
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -510,7 +510,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SmallObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 651
|
||||
startLine: 657
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -539,7 +539,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonBuyable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 653
|
||||
startLine: 659
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -568,7 +568,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Table
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 655
|
||||
startLine: 661
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -597,7 +597,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Holdable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 657
|
||||
startLine: 663
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -626,7 +626,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DeskObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 659
|
||||
startLine: 665
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -655,7 +655,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DisallowedOnGround
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 661
|
||||
startLine: 667
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -684,7 +684,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Computer
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 663
|
||||
startLine: 669
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -713,7 +713,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sink
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 665
|
||||
startLine: 671
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -742,7 +742,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CounterObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 667
|
||||
startLine: 673
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -771,7 +771,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Cleanable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 669
|
||||
startLine: 675
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -800,7 +800,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: People
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 671
|
||||
startLine: 677
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -829,7 +829,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mailbox
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 673
|
||||
startLine: 679
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -858,7 +858,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Wardrobe
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 675
|
||||
startLine: 681
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -887,7 +887,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NaturalGroundRequired
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 677
|
||||
startLine: 683
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -916,7 +916,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WaterRequired
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 679
|
||||
startLine: 685
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -945,7 +945,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AllowedOnWater
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 681
|
||||
startLine: 687
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -974,7 +974,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Self
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 683
|
||||
startLine: 689
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1003,7 +1003,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WallHanging
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 685
|
||||
startLine: 691
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1032,7 +1032,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ForceGridPlacement
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 687
|
||||
startLine: 693
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1061,7 +1061,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Easel
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 689
|
||||
startLine: 695
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1090,7 +1090,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mirror
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 691
|
||||
startLine: 697
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1119,7 +1119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Bookshelf
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 693
|
||||
startLine: 699
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1148,7 +1148,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonColliding
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 695
|
||||
startLine: 701
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1177,7 +1177,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Gravestone
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 697
|
||||
startLine: 703
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1206,7 +1206,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonSellable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 699
|
||||
startLine: 705
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1235,7 +1235,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonMovable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 701
|
||||
startLine: 707
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1264,7 +1264,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Tree
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 703
|
||||
startLine: 709
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1293,7 +1293,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Television
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 705
|
||||
startLine: 711
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1322,7 +1322,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BartendingObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 707
|
||||
startLine: 713
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1351,7 +1351,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Walls
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 709
|
||||
startLine: 715
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1380,7 +1380,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LargeSurfaceObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 711
|
||||
startLine: 717
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1409,7 +1409,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StandingDesk
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 713
|
||||
startLine: 719
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1438,7 +1438,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Lamp
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 715
|
||||
startLine: 721
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1467,7 +1467,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CeilingHanging
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 717
|
||||
startLine: 723
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1496,7 +1496,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCoverWindow
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 719
|
||||
startLine: 725
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1525,7 +1525,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCoverDoor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 721
|
||||
startLine: 727
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1554,7 +1554,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Barbecue
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 723
|
||||
startLine: 729
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1583,7 +1583,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TrashCan
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 725
|
||||
startLine: 731
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1612,7 +1612,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanBeThrownAway
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 727
|
||||
startLine: 733
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1641,7 +1641,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanBeScrapped
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 729
|
||||
startLine: 735
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1670,7 +1670,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ObstructedByRoofs
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 731
|
||||
startLine: 737
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1699,7 +1699,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RoofAttached
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 733
|
||||
startLine: 739
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1728,7 +1728,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FireLight
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 735
|
||||
startLine: 741
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1757,7 +1757,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToyBox
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 737
|
||||
startLine: 743
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1786,7 +1786,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChildStove
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 739
|
||||
startLine: 745
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1815,7 +1815,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sandbox
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 741
|
||||
startLine: 747
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1844,7 +1844,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JungleGym
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 743
|
||||
startLine: 749
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1873,7 +1873,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Newspaper
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 745
|
||||
startLine: 751
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1902,7 +1902,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CoffeeMachine
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 747
|
||||
startLine: 753
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1931,7 +1931,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CafeDisplayCase
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 749
|
||||
startLine: 755
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1960,7 +1960,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GroundItem
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 751
|
||||
startLine: 757
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1989,7 +1989,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TreeDecor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 753
|
||||
startLine: 759
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2018,7 +2018,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OpeningHoursSign
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 755
|
||||
startLine: 761
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2047,7 +2047,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TeaKit
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 757
|
||||
startLine: 763
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2076,7 +2076,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LandlinePhone
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 759
|
||||
startLine: 765
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2105,7 +2105,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Potty
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 763
|
||||
startLine: 769
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2134,7 +2134,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Treadmill
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 765
|
||||
startLine: 771
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2163,7 +2163,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DumbbellHolder
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 767
|
||||
startLine: 773
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2192,7 +2192,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WoodworkingItem
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 769
|
||||
startLine: 775
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2221,7 +2221,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChangingStation
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 771
|
||||
startLine: 777
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2250,7 +2250,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Crib
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 773
|
||||
startLine: 779
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2279,7 +2279,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BabyBathtub
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 775
|
||||
startLine: 781
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2308,7 +2308,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 779
|
||||
startLine: 785
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2343,7 +2343,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_Implicit
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 782
|
||||
startLine: 788
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2378,7 +2378,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_Implicit
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 787
|
||||
startLine: 793
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2413,7 +2413,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_BitwiseOr
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 792
|
||||
startLine: 798
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2450,7 +2450,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_BitwiseAnd
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 797
|
||||
startLine: 803
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2487,7 +2487,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_ExclusiveOr
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 802
|
||||
startLine: 808
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2524,7 +2524,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_OnesComplement
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 807
|
||||
startLine: 813
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -27,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ParentInfo
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 842
|
||||
startLine: 848
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -63,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsAttached
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 847
|
||||
startLine: 853
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -94,7 +94,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LayerDepth
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 852
|
||||
startLine: 858
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -125,7 +125,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ShouldDraw
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 856
|
||||
startLine: 862
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -156,7 +156,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 869
|
||||
startLine: 875
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -191,7 +191,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 878
|
||||
startLine: 884
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -229,7 +229,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 887
|
||||
startLine: 893
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -264,7 +264,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 895
|
||||
startLine: 901
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -299,7 +299,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 903
|
||||
startLine: 909
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Visibility
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 816
|
||||
startLine: 822
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -52,7 +52,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WhenVisible
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 821
|
||||
startLine: 827
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -80,7 +80,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WhenVisibleExt
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 825
|
||||
startLine: 831
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HideZoomedOut
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 829
|
||||
startLine: 835
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -136,7 +136,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Static
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 834
|
||||
startLine: 840
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawDelegate
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2983
|
||||
startLine: 2991
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
|
@ -3447,7 +3447,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRegularVisitors
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 1933
|
||||
startLine: 1941
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3478,7 +3478,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetAllLotEmployments
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 1943
|
||||
startLine: 1951
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3509,7 +3509,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MarkGroundTileDirtyForDrawing
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 1956
|
||||
startLine: 1964
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3541,7 +3541,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MarkObjectDirtyForDrawing
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 1972
|
||||
startLine: 1980
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3582,7 +3582,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PrepareForPermanentRemoval
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2003
|
||||
startLine: 2011
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3610,7 +3610,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LoadStaticMap
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2588
|
||||
startLine: 2596
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3645,7 +3645,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsLotHidden
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2632
|
||||
startLine: 2640
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3680,7 +3680,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetMapSampler
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2650
|
||||
startLine: 2658
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3711,7 +3711,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateExternalPeople
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2661
|
||||
startLine: 2669
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -3749,7 +3749,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetVisibleWorldArea
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2755
|
||||
startLine: 2763
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
|
@ -313,7 +313,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/World/MapSection.cs
|
||||
startLine: 119
|
||||
startLine: 124
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
@ -341,7 +341,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetAllTiles
|
||||
path: ../TinyLife/World/MapSection.cs
|
||||
startLine: 155
|
||||
startLine: 169
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ObjectUpdateDelegate
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2968
|
||||
startLine: 2976
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ObjectUpdateDelegateNoPhase
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2973
|
||||
startLine: 2981
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateDelegate
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2958
|
||||
startLine: 2966
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateDelegateNoPhase
|
||||
path: ../TinyLife/World/Map.cs
|
||||
startLine: 2963
|
||||
startLine: 2971
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.World
|
||||
|
|
Loading…
Reference in a new issue